Advertisement
noor017

Untitled

Jan 2nd, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.80 KB | None | 0 0
  1. sudo apt-get update
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. To install or update nvm, you can use the install script using cURL:
  4. curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
  5. or Wget:
  6. wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
  7.  
  8. Then source ~/.bashrc
  9. erp@SEUPC0724:~$ nvm --version
  10. 0.33.8
  11. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  12. https://sg.godaddy.com/help/install-nodejs-ubuntu-17395
  13. sudo apt-get install build-essential libssl-dev
  14. nvm ls-remote
  15. nvm install 8.9.3
  16. nvm use 8.9.3
  17. node -v
  18. nvm alias default 8.9.3
  19. nvm use default
  20. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  21. https://yarnpkg.com/en/docs/install
  22. curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
  23. echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
  24. sudo apt-get update
  25. sudo apt-get install yarn
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. npm install -g yo
  28. erp@SEUPC0724:~$ yo --version
  29. 2.0.0
  30. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  31. If you want to use the JHipster Marketplace, install Yeoman: yarn global add yo
  32. Install JHipster: npm install -g generator-jhipster
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. npm install -g @angular/cli
  35. npm install -g bootstrap@3
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement