Skip to content

Instantly share code, notes, and snippets.

@srmklive
Last active November 2, 2015 13:32
Show Gist options
  • Save srmklive/887e3aea58fb2e8867bf to your computer and use it in GitHub Desktop.
Save srmklive/887e3aea58fb2e8867bf to your computer and use it in GitHub Desktop.
Install NodeJS on Linux using Standard Binary packages downloaded from https://nodejs.org
## Step 1: Check System Architecture.
getconf LONG_BIT
uname -p
## Step 2: Download the latest version. current LTS release is 4.2.1.
wget https://nodejs.org/dist/v4.2.1/node-v4.2.1-linux-x64.tar.gz
## Step 3: Installing the downloaded binary
tar -C /usr/local --strip-components 1 -xzf node-v4.2.1-linux-x64.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment