Last active
November 25, 2017 22:54
-
-
Save xpander54/5abe5a8f551ebe5bba3eb69ca9963e08 to your computer and use it in GitHub Desktop.
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
https://nodejs.org/dist/ | |
Install Node JS manually | |
=============== | |
fist make sure version is ready for download at https://nodejs.org/dist/ | |
use v8.9.* or higher but not v9.* ! | |
do | |
cat /proc/cpuinfo | |
and see what version of armv u have to choose | |
* armv6 * node-v8.9.0 | |
wget https://nodejs.org/dist/v8.9.0/node-v8.9.0-linux-armv6l.tar.gz | |
tar -xvf node-v8.9.0-linux-armv6l.tar.gz | |
cd node-v8.9.0-linux-armv6l | |
cp -R * /usr/local/ | |
* armv7 * node-v8.9.1 | |
wget https://nodejs.org/dist/v8.9.1/node-v8.9.1-linux-armv7l.tar.gz | |
tar -xvf node-v8.9.1-linux-armv7l.tar.gz | |
cd node-v8.9.1-linux-armv7l | |
cp -R * /usr/local/ | |
* armv8 64bit * node-v8.9.1 | |
wget https://nodejs.org/dist/v8.9.1/node-v8.9.1-linux-arm64.tar.gz | |
tar -xvf node-v8.9.1-linux-arm64.tar.gz | |
cd node-v8.9.1-linux-arm64 | |
cp -R * /usr/local/ | |
sudo npm install -g | |
cat /proc/cpuinfo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment