我已根据https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server
安装了Node.js,NVM和NPM我的工作目录如下所示:
Working_Files \ WebRTC ,其中包含以下文件:
和
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>
错误确实存在吗?
谢谢
答案 0 :(得分:1)
试试这个:sudo ln -s "$(which nodejs)" /usr/bin/node
再次运行node server.js