我在服务器中使用forever.js。当我运行forever start index.js
时,它运行正常,但当我致电node index.js
时,它说:
The program 'nodejs' is currently not installed. You can install it by typing:
apt-get install nodejs
我尝试运行which node
,上面的消息也显示出来了。我很迷惑。 node.js是否已安装在我的服务器中?
答案 0 :(得分:0)
在Ubuntu上,包node
引用了一些与node.js无关的程序。
因此,使用了包nodejs
,并且永远似乎在寻找它。
您应该在选项中搜索如何将正确的可执行文件永久指向。
快速查看documentation似乎意味着您应该致电:
forever start index.js -c node
或者如果没有被识别
forever start index.js -c /path/to/node