最佳答案
我正在尝试将nodeJs安装到我的Ubuntu 14.04中,以便使用GruntJs。
我读过关于Ubuntu不同的方式的内容(问题?),所以这是我为了安装它所做的:
sudo apt-get install npm
sudo npm install -g grunt-cli
输入grunt之后,我得到了错误:
/usr/bin/env: node: No such file or directory
所以,我试过:
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install -y nodejs
sudo apt-get update
再次尝试,仍然得到错误,我尝试了:
sudo add-apt-repository https://launchpad.net/~chris-lea/+archive/node.js/
sudo apt-get install -y nodejs
我得到了这个信息:
nodejs is already the newest version.
0 to upgrade, 0 to newly install, 0 to remove and 3 not to upgrade.
以防万一,我试着清理了一下:
sudo apt-get autoremove
但是,错误仍然存在:当我输入grunt时,我仍然得到/usr/bin/env: node: No such file or directory
我该怎么办?