Skip to content

Instantly share code, notes, and snippets.

@Vlasterx
Created October 18, 2016 16:02
Show Gist options
  • Select an option

  • Save Vlasterx/e4734631aa10bfe42091844108a4d84f to your computer and use it in GitHub Desktop.

Select an option

Save Vlasterx/e4734631aa10bfe42091844108a4d84f to your computer and use it in GitHub Desktop.
Installing Node on Debian 8
wget https://nodejs.org/dist/v4.6.0/node-v4.6.0-linux-x64.tar.xz
tar -xJf node-v4.6.0-linux-x64.tar.xz && cd node-v4.6.0-linux-x64
cp ./bin/node /usr/local/bin/node
cp -r ./lib/node_modules /usr/local/lib/node_modules
ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm
cp -r ./include/node /usr/local/include
mkdir -p /usr/local/man/man1 && cp ./share/man/man1/node.1 /usr/local/man/man1/node.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment