DEV Community

Cover image for Installing Node 12 and higher on a Raspberry Pi Zero with nvm
Patrick Weaver
Patrick Weaver

Posted on • Updated on

Installing Node 12 and higher on a Raspberry Pi Zero with nvm

I usually use nvm to manage node.js versions for projects, but there are not official binaries for the ARM V6 chip in a Raspberry Pi Zero for node versions 12 and higher. The source is still available, and so if you try nvm install 14.17.4 nvm will attempt to compile from source, which on a Raspberry Pi zero will take a long, long, long time (and probably fail).

Fortunately node.js provides "unofficial builds" of newer node versions for ARM v6 at unofficial-builds.nodejs.org.

You can use these binaries with nvm by providing a url to use instead of the default node.js binaries url:

nodejs 14

NVM_NODEJS_ORG_MIRROR=https://unofficial-builds.nodejs.org/download/release nvm install 14
Enter fullscreen mode Exit fullscreen mode

nodejs 16

NVM_NODEJS_ORG_MIRROR=https://unofficial-builds.nodejs.org/download/release nvm install 16
Enter fullscreen mode Exit fullscreen mode

Top comments (3)

Collapse
 
jazzbrown1 profile image
Jazz Brown

Hey thanks. This was really helpful!

Collapse
 
xaviertourenq profile image
Xavier Tourenq

thank you!!

Collapse
 
geokal profile image
Giorgos Kalpaktsoglou

Gr8 !! thanks