Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ianscrivener/d358784da1961682fb13a6a1d075f252 to your computer and use it in GitHub Desktop.

Select an option

Save ianscrivener/d358784da1961682fb13a6a1d075f252 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