Skip to content

Instantly share code, notes, and snippets.

@dudewheresmycode
Created November 13, 2023 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudewheresmycode/98f8f73f139a0ae999e54c7c80bf6864 to your computer and use it in GitHub Desktop.
Save dudewheresmycode/98f8f73f139a0ae999e54c7c80bf6864 to your computer and use it in GitHub Desktop.
Install NodeJS on Raspberry Pi 4 (armv8)
#!/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