Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mandrean/71f2cbf707025a5983c0fc04d78f3e9a to your computer and use it in GitHub Desktop.
Save mandrean/71f2cbf707025a5983c0fc04d78f3e9a to your computer and use it in GitHub Desktop.
Install NodeJS LTS on Raspberry Pi Zero W (ARMv6)
# update system
$ sudo apt update && sudo apt upgrade
# uninstall old node (v10?)
$ sudo apt remove nodejs npm -y
# install nvm
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
# use 'unofficial builds' in nvm
$ echo "export NVM_NODEJS_ORG_MIRROR=https://unofficial-builds.nodejs.org/download/release" >> ~/.bashrc
# reload bashrc
$ source ~/.bashrc
# install latest LTS
$ nvm install --lts
$ nvm use --lts
# verify versions
$ node -v
$ npm -v
@karnatik
Copy link

karnatik commented Mar 2, 2024

So thanks bro, i didn't know how to modify nvm.sh to target unofficial-builds.. you did it.

@sdesalas
Copy link

Sweet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment