The command not found error you are getting because your PATH does not include the location of the node executable.
So you can use "/usr/local/bin/node" to run node.
Another thing you can add that location to your path by running the following command to add a single line to your bashrc file:
echo 'export PATH=$PATH:/usr/local/bin' >> $HOME/.bashrc