After upgrading Node.js to latest release on Raspberry, seems Node-Red gets removed. Techworked will cover how to revert back to old Node.js in order to install Node Red.
- First part will be removing current Node.js installation
sudo apt remove nodejs
- Let’s install Node.js version 0.10 required by Node Red in Pi
sudo curl -sL https://deb.nodesource.com/setup_0.10 | bash -
- List the available nodejs. Require -a inorder to list all the packages
apt list nodejs -a
- Let’s install nodejs
sudo apt install nodejs/stable
- Install node red
sudo apt install nodered -y
- Node Red menu should appear back in Raspberry Pi menu