Skip to content

Instantly share code, notes, and snippets.

@ted-piotrowski
Created September 26, 2016 02:36
Show Gist options
  • Save ted-piotrowski/33d7a23ce9f67231620d8edd825bf89e to your computer and use it in GitHub Desktop.
Save ted-piotrowski/33d7a23ce9f67231620d8edd825bf89e to your computer and use it in GitHub Desktop.
Install latest NodeJS on Ubuntu ARM
sudo apt-get uninstall nodejs # uninstall nodejs 4.2.6
wget https://nodejs.org/dist/v6.6.0/node-v6.6.0-linux-armv7l.tar.gz # get latest ARM build
tar -xvf node-v6.6.0-linux-armv7l.tar.gz # extract it
sudo cp node-v6.6.0-linux-armv7l /etc/node6.6 # copy extracted file to /etc folder
sudo ln -s /etc/node6.6/bin/node /usr/bin/node # link the nodejs executable
sudo ln -s /etc/node6.6/bin/npm /usr/bin/npm # link the npm executable
node --version # should output v6.6.0
@mohsen1
Copy link

mohsen1 commented Feb 8, 2020

You can go to https://nodejs.org/dist/ to see latest versions

@ttodua
Copy link

ttodua commented Jan 18, 2024

here is correct instruction: install-node-js-on-ubuntu-arm-64-or-32-bit/

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