Node.js安装错误

时间:2015-11-12 15:44:07

标签: linux node.js install

我已根据https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server

安装了Node.js,NVM和NPM

我的工作目录如下所示:

Working_Files \ WebRTC ,其中包含以下文件:

  • 的package.json
  • server.js

Working_Files \ WebRTC \ views ,其中包含索引文件:

index.ejs

在Working_Files \ WebRTC中,为了运行服务器,请使用:

  node server.js

每次我必须重复安装中解释的过程,否则我收到错误:

 node server.js 
 The program 'node' can be found in the following packages:
  * node
  * nodejs-legacy
  Try: sudo apt-get install <selected package>

错误确实存在吗?

谢谢

1 个答案:

答案 0 :(得分:1)

试试这个:sudo ln -s "$(which nodejs)" /usr/bin/node

再次运行node server.js