From f53cb5ec0faf042fa049cac087919421a369f7b1 Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Wed, 11 Mar 2020 11:23:32 +0100 Subject: [PATCH] Update install node on ubuntu post --- ...installing-node-js-and-npm-on-ubuntu-debian.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/content/posts/2011-10-24-installing-node-js-and-npm-on-ubuntu-debian.md b/content/posts/2011-10-24-installing-node-js-and-npm-on-ubuntu-debian.md index 38c968b..bedfe3d 100644 --- a/content/posts/2011-10-24-installing-node-js-and-npm-on-ubuntu-debian.md +++ b/content/posts/2011-10-24-installing-node-js-and-npm-on-ubuntu-debian.md @@ -4,13 +4,15 @@ title = "Installing Node.js and NPM on Ubuntu/Debian" tags = ["Linux", "Ubuntu", "debian", "nodejs", "devops", "node", "npm"] slug = "installing-node-js-and-npm-on-ubuntu-debian" +++ + This is just short snippet on how to install Node.js (any version) and NPM (Node Package Manager) on your Ubuntu/Debian system. + ## Step 1 - Update your system ``` shell sudo apt-get update -sudo apt-get install git-core curl build-essential openssl libssl-dev +sudo apt-get install git-core curl build-essential openssl libssl-dev python ``` ## Step 2 - Install Node.js @@ -18,7 +20,7 @@ sudo apt-get install git-core curl build-essential openssl libssl-dev First, clone the Node.js repository: ``` shell -git clone https://github.com/joyent/node.git +git clone https://github.com/nodejs/node.git cd node ``` @@ -26,11 +28,13 @@ Now, if you require a specific version of Node: ``` shell git tag # Gives you a list of released versions -git checkout v0.4.12 +git checkout v13.10.1 ``` Then compile and install Node like this: +This might take a while, depending on your hardware. + ``` shell ./configure make @@ -59,3 +63,8 @@ npm -v That's all. +_Updated 2020-03-11_ + + * Use the new nodejs/node repo + * Install correct dependencies, including python\ + * Update example node version to v13.10.1_