ubuntu:install_node.js:install_from_source
Differences
This shows you the differences between two versions of the page.
ubuntu:install_node.js:install_from_source [2021/01/25 10:40] – created peter | ubuntu:install_node.js:install_from_source [2021/01/25 10:41] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Ubuntu - Install node.js - Install from Source ====== | ====== Ubuntu - Install node.js - Install from Source ====== | ||
+ | |||
+ | ===== Install packages required to compile the source code ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install build-essential | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Download the latest source code from nodejs.org ===== | ||
+ | |||
+ | <code bash> | ||
+ | wget http:// | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Extract the tar archive ===== | ||
+ | |||
+ | <code bash> | ||
+ | tar zxvf node-v0.10.9.tar.gz | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Enter the directory we just extracted from the tar archive ===== | ||
+ | |||
+ | <code bash> | ||
+ | cd node-v0.10.9 | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Compile and install ===== | ||
+ | |||
+ | <code bash> | ||
+ | ./configure | ||
+ | make | ||
+ | make install | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Test ===== | ||
+ | |||
+ | Test node.js to make sure it’s working correctly. | ||
+ | |||
+ | <code bash> | ||
+ | echo " | ||
+ | </ | ||
+ | |||
+ | This should simply print “Hello World” in the console. | ||
+ | |||
+ | If you don’t get any errors, node.js is installed and functional and you may just have executed your first node.js script. | ||
ubuntu/install_node.js/install_from_source.1611571241.txt.gz · Last modified: 2021/01/25 10:40 by peter