系统相关
首页 > 系统相关> > npm install -g grunt-cli在Linux中失败了

npm install -g grunt-cli在Linux中失败了

作者:互联网

我尝试在Linux中运行下一个命令:

npm install -g grunt-cli

我得到的信息是下一个:

npm http GET https://registry.npmjs.org/grunt-cli

npm ERR! Error: failed to fetch from registry: grunt-cli
npm ERR!     at /usr/share/npm/lib/utils/npm-registry-client/get.js:139:12
npm ERR!     at cb (/usr/share/npm/lib/utils/npm-registry-client/request.js:31:9)
npm ERR!     at Request._callback (/usr/share/npm/lib/utils/npm-registry-client/request.js:136:18)
npm ERR!     at Request.callback (/usr/lib/nodejs/request/main.js:119:22)
npm ERR!     at Request.<anonymous> (/usr/lib/nodejs/request/main.js:212:58)
npm ERR!     at Request.emit (events.js:88:20)
npm ERR!     at ClientRequest.<anonymous> (/usr/lib/nodejs/request/main.js:412:12)
npm ERR!     at ClientRequest.emit (events.js:67:17)
npm ERR!     at HTTPParser.onIncoming (http.js:1261:11)
npm ERR!     at HTTPParser.onHeadersComplete (http.js:102:31)
npm ERR! You may report this log at:
npm ERR!     <http://bugs.debian.org/npm>
npm ERR! or use
npm ERR!     reportbug --attach /usr/local/grunt/npm-debug.log npm

谢谢大家的帮助

解决方法:

我建议不要在你的npm安装中使用sudo(任何sudo npm安装),看起来你需要更新你的存储库,我不确定你使用的是发行版,但是如果debian或ubuntu你应该做类似的事情:

sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

欲了解更多信息,请阅读how to install node from npm

标签:linux,node-js,gruntjs
来源: https://codeday.me/bug/20190830/1767697.html