Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 561 Bytes

File metadata and controls

35 lines (27 loc) · 561 Bytes

Install Nodejs using NVM (Recommended method)

  • Install NVM (Node Version Manager)
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
  • Restart your Terminal

  • Install most recent Node.js

nvm install node

Install Nodejs using yum

  • Add NodeSource yum repository
curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -
  • Install Node.js and npm
sudo yum install nodejs
  • Verify Installation
node --version
  • Install Development tools
sudo yum install gcc-c++ make