Created
November 13, 2023 02:53
-
-
Save dudewheresmycode/98f8f73f139a0ae999e54c7c80bf6864 to your computer and use it in GitHub Desktop.
Install NodeJS on Raspberry Pi 4 (armv8)
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
#!/bin/bash | |
wget "https://nodejs.org/dist/v20.9.0/node-v20.9.0-linux-arm64.tar.xz" | |
tar -xf node-v20.9.0-linux-arm64.tar.xz | |
cd node-v20.9.0-linux-arm64 | |
sudo cp -R bin include lib share /usr/local/ | |
node -v | |
npm -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment