Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save charlyie/b6852d7c9c60229873d79c99337825b5 to your computer and use it in GitHub Desktop.
Save charlyie/b6852d7c9c60229873d79c99337825b5 to your computer and use it in GitHub Desktop.
Usage of unofficial builds of node.js to install node.js on Raspberry pi (armv6l)
#Download from https://unofficial-builds.nodejs.org/download/release/ the appropriate build for armv6l, example https://unofficial-builds.nodejs.org/download/release/v18.9.1/node-v18.9.1-linux-armv6l.tar.gz
wget https://unofficial-builds.nodejs.org/download/release/v18.9.1/node-v18.9.1-linux-armv6l.tar.gz
tar -xzf node-v18.9.1-linux-armv6l.tar.gz
cd node-v18.9.1-linux-armv6l
sudo cp -R * /usr/local
node -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment