I am a beginner programmer having trouble installing node 6.3.0.
I successfully ran the command:
brew install nvm
but i get the error listed "nvm command not found" when I try to run
nvm install 6.3.0
From google it seems like I likely have an issue with my .bash_profile but nothing I've found works. Right now my .bash profile reads like
this:export RBENV_ROOT=/usr/local/var/rbenv
rbenv > /dev/null; eval "$(rbenv init -)"
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin
I know there needs to be something added for Node but I can't figure out what, also once I do figure out how to install 6.3.0, how do I make it my default version?
Thanks!