Created
January 1, 2016 14:55
-
-
Save luckylooke/e1f8db2894a8d0dbc8c4 to your computer and use it in GitHub Desktop.
Installing yeoman in cloud9 enviroment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// install latest stable node | |
nvm install stable | |
// install yoman | |
npm install -g yo | |
// yoman automaticly check enviroment via yoman doctor, copypaste sugested command into terminal | |
echo "export NODE_PATH=$NODE_PATH:/home/ubuntu/.nvm/versions/node/v5.3.0/lib/node_modules" >> ~/.bashrc && source ~/.bashrc | |
// you can check again that everything is OK now | |
yo doctor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment