Created
March 10, 2017 20:34
-
-
Save tachang/2117833a395504bae0bde9979f4e201e to your computer and use it in GitHub Desktop.
How to install NodeJS without root
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
wget https://nodejs.org/dist/v6.10.0/node-v6.10.0-linux-x64.tar.xz | |
tar xvfJ node-v6.10.0-linux-x64.tar.xz | |
echo 'export PATH=$HOME/node-v6.10.0-linux-x64/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works! Thank you.