jrasm91 / pi-projects

Raspberry Pi Projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wick canner 1700 watts (~14 amps @ 120 VAC)

Pi Projects

Install Node on Pi Zero

https://www.w3schools.com/nodejs/nodejs_raspberrypi.asp

Tutorial - node.js on RPi

https://hassancorrigan.com/blog/install-nodejs-on-a-raspberry-pi-zero/

Make sure you're in the same directory as the binary you just download. You can use the ls command to list all files. Extract the binary from the tarball file using the following command.

wget https://unofficial-builds.nodejs.org/download/release/v14.13.0/node-v14.13.0-linux-armv6l.tar.xz
tar xvfJ node-v14.13.0-linux-armv6l.tar.xz
sudo cp -R node-v14.13.0-linux-armv6l/* /usr/local
# clean up and remove 
rm -rf node-*

Reboot your Pi and log back in to make sure everything worked correctly.

You can now run the following command which will check what version of NPM and NodeJS are currently installed on your Pi Zero.

node -v && npm -v

w1 support

npm install w1temp --global

About

Raspberry Pi Projects


Languages

Language:JavaScript 90.7%Language:TypeScript 4.0%Language:HTML 3.0%Language:SCSS 1.1%Language:Python 1.0%Language:CSS 0.2%Language:Shell 0.1%Language:Batchfile 0.0%