我在安装 Angular CLI 时遇到问题。
我在 Windows 10 上的 cmd 提示符上写了一条命令:
npm install -g @angular/cli
发生了以下错误:
意外警告https://registry.npmjs.org/:杂项警告 ETIMEDOUT:请求https://registry.npmjs.org/@angular%2fcli失败,原因:连接 ETIMEDOUT 104.16.25.35:443
以下是该情况的图片:
答案1
运行该命令npm cache clear --force
通常可以解决这个问题。
如果npm cache clear --force
问题没有解决,您可以尝试package.json.lock
从项目中删除该文件,然后使用命令再次验证 npm 缓存npm cache verify
。