Skip to content

Instantly share code, notes, and snippets.

@moritzmhmk
Created June 10, 2019 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moritzmhmk/2711aad2b2745c7d02f7062fb33ffad5 to your computer and use it in GitHub Desktop.
Save moritzmhmk/2711aad2b2745c7d02f7062fb33ffad5 to your computer and use it in GitHub Desktop.
Install Node On Raspberry Pi Zero (armv6)

Find the latest LTS release. Currently the LTS version is 10.x and the latest release can be found here (choose the file ending with -linux-armv6l.tar.xz).

Download that file: wget https://nodejs.org/dist/latest-v10.x/node-v10.16.0-linux-armv6l.tar.xz

Unpack the file: tar -xvf node-v10.16.0-linux-armv6l.tar.xz

Copy the content over to /usr/local: sudo cp -r node-v10.16.0-linux-armv6l/* /usr/local/

Test it: node -v

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