https://github.com/haroldpetersinskipp/raspberry-pi-scripts
Scripts for use with raspberry pi devices
https://github.com/haroldpetersinskipp/raspberry-pi-scripts
armv6 nodejs raspberry-pi
Last synced: 8 months ago
JSON representation
Scripts for use with raspberry pi devices
- Host: GitHub
- URL: https://github.com/haroldpetersinskipp/raspberry-pi-scripts
- Owner: HaroldPetersInskipp
- License: mit
- Created: 2021-10-12T01:59:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-01T21:55:00.000Z (about 3 years ago)
- Last Synced: 2024-12-30T02:27:32.664Z (9 months ago)
- Topics: armv6, nodejs, raspberry-pi
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raspberry-Pi-Scripts
Scripts for use with Raspberry Pi devices## Install unofficial-builds of Node.js for Node-RED
Armv6lNodeX.X.X.sh will install node.js version X.X.X on Arm6 based Raspberry Pi devices, such as the Pi Zero W. This may work on other devices, but is untested.Or run one of the below commands:
### Node v16.6.1
```sh
$ wget -O - https://raw.githubusercontent.com/HaroldPetersInskipp/Raspberry-Pi-Scripts/main/Armv6lNode16.6.1.sh | bash
```
### Node v16.11.1
```sh
$ wget -O - https://raw.githubusercontent.com/HaroldPetersInskipp/Raspberry-Pi-Scripts/main/Armv6lNode16.11.1.sh | bash
```
### Node v16.16.0
```sh
$ wget -O - https://raw.githubusercontent.com/HaroldPetersInskipp/Raspberry-Pi-Scripts/main/Armv6lNode16.16.0.sh | bash
```### Important
If you get an error like `/usr/bin/env: 'node-red-pi': No such file or directory` when you try to start Node-RED.Run `sudo ln -s /opt/nodejs/lib/node_modules/node-red/bin/node-red-pi /usr/bin/node-red-pi` to fix it. Otherwise ignore this.