Last active
August 29, 2015 14:07
-
-
Save mvdpoel/30fd3dfc269a99649795 to your computer and use it in GitHub Desktop.
setup_ds_hackaton
This file contains hidden or 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 update && apt-get -y upgrade | |
| cd ~ | |
| if [ ! -f node-v0.10.32.tar.gz ]; then | |
| wget http://nodejs.org/dist/v0.10.32/node-v0.10.32.tar.gz | |
| tar -xvzf node-v0.10.32.tar.gz | |
| cd node-v0.10.32 | |
| ./configure && make && make install | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment