Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

Set env

{user.name} should your local name

...

Make .bash_profile & Set PATH

Code Block
vi ~/.bash_profile

# attach on the bottom
export NVM_DIR="/Users/{user.name}$HOME/.nvm"

[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm

check version

...