Created
July 29, 2023 11:25
-
-
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)
This file contains 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
#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