Running my own node2

I decided to just play around with the tools and I switched from Testnet to Betanet after running this command

./update.sh -i -c beta -p . -d betanetdata -n -g betanet

i tried to run this

goal node start -d betanetdata

and I got an error saying
macbookair@Macbooks-Air node % goal node start -d betanetdata
zsh: command not found: goal
any help please?

I just got it sorted out. I used ./goal node start -d betadata

instead of goal node start -d betanetdata

and the node was started

1 Like

Another solution is to add the folder where goal is in the $PATH.

If you are in the folder with goal, run:

export PATH="$PWD:$PATH"
1 Like