Skip to content

Instantly share code, notes, and snippets.

@clemherreman
Created February 20, 2012 13:17
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save clemherreman/1869145 to your computer and use it in GitHub Desktop.
Save clemherreman/1869145 to your computer and use it in GitHub Desktop.
How to: install nodeJS on debian Squeeze, via @sekati
sudo apt-get update && apt-get install git-core curl build-essential openssl libssl-dev
git clone https://github.com/joyent/node.git
cd node
# 'git tag' shows all available versions: select the latest stable.
git checkout enter-a-version
# Configure seems not to find libssl by default so we give it an explicit pointer.
# Optionally: you can isolate node by adding --prefix=/opt/node
./configure --openssl-libpath=/usr/lib/ssl
make
make test
sudo make install
node -v # it's alive!
# Luck us: NPM is packaged with Node.js source so this is now installed too
# curl http://npmjs.org/install.sh | sudo sh
npm -v # it's alive!
@Nyholm
Copy link

Nyholm commented Aug 7, 2013

You have to use sudo after the && as well.

sudo apt-get update && sudo apt-get install git-core curl build-essential openssl libssl-dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment