Last active
May 2, 2016 17:42
-
-
Save mattlo/9b2995bb884b57f13998b282444e9bee to your computer and use it in GitHub Desktop.
Install v4.4.3 NodeJS on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v="4.4.3" | |
url="https://nodejs.org/dist/v$v/node-v$v-linux-x64.tar.gz" | |
wget $url | |
tar -C /usr/local --strip-components 1 -xzf "node-v$v-linux-x64.tar.gz" | |
ls -l /usr/local/bin/node | |
ls -l /usr/local/bin/npm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment