Forked from charlyie/Install whatever node.js version on raspberry pi, inclusing armv6l
Created
April 19, 2024 05:17
-
-
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)
This file contains hidden or 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