赞
踩
npm cache clean --force
1.查看当前使用的镜像地址命令
npm config get registry
切换为淘宝镜像命令(安装一些package容易报错)
npm config set registry https://registry.npm.taobao.org
或官方:
npm config set registry https://registry.npmjs.org/
请求下载不下来可能是忽略证书下载能解决大部分问题
npm install --strict-ssl=false
你可以尝试以下几种解决方法:
重新安装依赖:删除 node_modules 文件夹,然后再次运行 npm install。
使用 --force 或 --legacy-peer-deps 选项:尝试使用 --force 或 --legacy-peer-deps 选项来强制解析依赖关系。这可能会绕过某些版本冲突,但可能导致依赖不完全符合预期。
npm install --force
或者
npm install --legacy-peer-deps
其他
就需要更新node版本,根据实际问题解决,最好不要随意更新,可能会导致项目版本不兼容问题
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。