我在nodejs
服务器上通过nvm
安装了Ubuntu
,并发现了jenkins任务的问题。所以我卸载了nvm
,并通过
nodejs
sudo apt-get install curl
curl --silent --location https://deb.nodesource.com/setup_5.x | sudo bash -
sudo apt-get install nodejs
现在在我的Ubuntu
服务器上,node
又回来了,npm
不是,如何重新安装npm
?
这是我的命令回显: $ node -v 5.8.0
$ npm -v
-bash: /home/ubuntu/.nvm/versions/node/v5.8.0/bin/npm: No such file or directory
答案 0 :(得分:1)
我认为这会对你有所帮助:
sudo apt-get install --reinstall npm
答案 1 :(得分:1)
最后我找到了解决方案:
curl http://npmjs.org/install.sh | sudo sh