当前位置: 首页 > 工具软件 > open-registry > 使用案例 >

刚获取项目npm i 报错:npm ERR! 404 Not Found - GET https://registry.npmmirror.com/fasp-fixed

汪德寿
2023-12-01
D:...>npm i
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmmirror.com/fasp-fixed - [NOT_FOUND] fasp-fixed not found
npm ERR! 404
npm ERR! 404  '...@1.228.7' is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

解决办法:
1.先查看当前的代理设置

npm config get proxy

2.如果代理设置时null,则需要配置新的代理地址

npm config set registry 新的地址
# 根据情况 是公司项目的地址还是默认的国内cnpm淘宝镜像
# npm config set registry https://registry.npm.taobao.org
# npm config set registry https://.... 公司路径
 类似资料: