
1. Download binary distribution
Latest binaries can be downloaded from Node.js official release directory.
https://nodejs.org/download/release/
https://nodejs.org/download/release/v8.4.0/node-v8.4.0-linux-x64.tar.gz
2. Extract into installation directory
This binary file must be extracted into the directory that you are installing Node.js. In my machine, I extracted it into below directory./home/user/software/nodejs_v8.4.0/
3. Add Node.js to PATH
It is required to append Node.js installation to PATH variable. For that, you can update either ~/.bash_profile or ~/.bashrc file as below.
export NODEJS_HOME=/home/user/software/nodejs_v8.4.0
export PATH=$PATH:$NODEJS_HOME/bin
4. Verify installation
Open up a console and check Node.js version to verify the installation as below.
bash$ node --version
v8.4.0
No comments:
Post a Comment