Getting your mac ready for the workshop
curl https://raw.githubusercontent.com/creationix/nvm/v0.16.1/install.sh | bash
or
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.16.1/install.sh | bash
nvm install v0.10.32
nvm alias default v0.10.32
npm install -g learnyounode
If you're running Zsh, the nvm load script may not get automatically added.
To fix, just add source ~/.nvm/nvm.sh
to your ~/.zshrc
Reload the terminal so it loads the new settings by restarting the terminal or better yet run one of these:
For bash: . ~/.bashrc
For zsh: . ~/.zshrc