Last active
November 11, 2015 06:10
-
-
Save genediazjr/ff0e7a6eca399b48658f to your computer and use it in GitHub Desktop.
Nodejs on Debian
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
apt-get install vim python g++ make checkinstall | |
src=$(mktemp -d) && cd $src | |
wget -N http://nodejs.org/dist/node-latest.tar.gz | |
tar xzvf node-latest.tar.gz && cd node-v* | |
./configure | |
checkinstall -y --install=no --pkgversion 0.10.35 make -j$(($(nproc)+1)) install # Replace with current version number. | |
dpkg -i node_* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment