错误输出
npm ERR! code EAI_AGAIN
npm ERR! errno EAI_AGAIN
npm ERR! request to https://registry.npmjs.org/cordova failed, reason: getaddrinfo EAI_AGAIN registry.npmjs.org:443
npm ERR! code EAI_AGAIN
npm ERR! errno EAI_AGAIN
npm ERR! request to https://registry.npmjs.org/cordova failed, reason: getaddrinfo EAI_AGAIN registry.npmjs.org:443
卡住了很长时间并出现上述错误。
system not behind any proxy.
os version ubuntu 16.04.3 lts
node version 8.11.3
npm version 5.6.0
当我输入时npm -v
,它显示另一个错误npm
更新检查失败。
答案1
更新你的 npm 版本。
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
npm -v
它应该打印6.4.0
。
或者你也可以sudo npm install npm@latest -g
在终端中输入
(注意:这将更新至最新稳定版本)
访问此链接更多细节。