Skip to content

Instantly share code, notes, and snippets.

@Husamui
Created October 20, 2016 17:26
Show Gist options
  • Select an option

  • Save Husamui/e48eaf80cc07b22f30c988a7f5190a0e to your computer and use it in GitHub Desktop.

Select an option

Save Husamui/e48eaf80cc07b22f30c988a7f5190a0e to your computer and use it in GitHub Desktop.
Installing tools from source code linux
#Download the source code
curl -O https://nodejs.org/dist/v4.2.4/node-v4.2.4.tar.gz
#unzip files
tar -xvf node-v4.2.4.tar.gz && rm node-v4.2.4.tar.gz
# cd it to main dircatory
cd node-v4.2.4/
#Run tool's configurion
./configure
#Build the binary of the tool
make
#Install the binary
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment