6

我正在尝试将我在 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

难道我做错了什么?

4

1 回答 1

21

您必须在控制台中运行以下命令:

sudo ln -s /usr/bin/nodejs /usr/local/bin/node

并再次尝试运行节点应用程序。

于 2015-04-23T11:23:58.483 回答