1

I installed node-red but the node-red-start command does not work. I get this error:

-bash: node-red-start: command not found

This was an old pi that I recently upgraded from wheezy to Jessie. The GUI interface also does not show node-red in the programming section. What should I check?

Patrick Cook
  • 6,365
  • 8
  • 38
  • 63
ValerieLampkin
  • 111
  • 1
  • 4

1 Answers1

2

If it is not shown in the GUI interface, it is possible that it was not installed properly, or at all. Try:

sudo apt-get update
sudo apt-get install --reinstall nodered

Then try running node-red-start

Patrick Cook
  • 6,365
  • 8
  • 38
  • 63