我在centos上永远安装了
sudo npm install forever -g
我可以永远正常运行
forever list
但是当我运行同样的操作时
sudo forever list
它给了我这个错误
forever command not found
我只能通过给出永远的绝对路径来永远在 sudo 模式下运行
喜欢
sudo /usr/local/lib/node_modules/forever/bin/forever list
有人可以在这件事上帮助我吗?
答案1
该命令无法识别,因为 shell 在查找命令/二进制文件时没有搜索其目录。您需要添加/usr/local/lib/node_modules/forever/bin
到您的路径。
将此行放入~/.bashrc
:
export PATH=/usr/local/lib/node_modules/forever/bin:$PATH
然后通过注销并重新登录或打开新终端来启动新的 shell 会话。