Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将我在 Windows 机器上构建的 nodejs 应用程序运行到我的 Ubuntu Server 14.04。
当我尝试使用启动 pm2 的 Web 界面pm2 web或使用启动我的 nodejs 应用程序时,我已经安装了 nodejs 和 pm2 hovewer pm2 start myapp.js,它会引发此错误:/usr/bin/env: node: No such file or directory
pm2 web
pm2 start myapp.js
/usr/bin/env: node: No such file or directory
难道我做错了什么?
您必须在控制台中运行以下命令:
sudo ln -s /usr/bin/nodejs /usr/local/bin/node
并再次尝试运行节点应用程序。