美文网首页
npm install 报错问题解决

npm install 报错问题解决

作者: 誰在花里胡哨 | 来源:发表于2021-10-29 17:04 被阅读0次

<持续更新~,有遇到其他问题或解决方案的欢迎评论!!>
方案1.🔥🔥尝试使用国内镜像安装运行

npm install -g cnpm --registry=https://registry.npm.taobao.org 
cnpm install // npm install
cnpm run dev // npm run dev

方案2.尝试清理下本地缓存

npm cache clean --force

方案3.可能是版本问题,建议尝试升级或降低对应版本

// packge.json
"engines": {
  "node": ">= 4.0.0",
  "npm": ">= 3.0.0"
 },
  • 重装npm版本
npm install -g npm
  • 降低npm版本
npm i -g npm@6.0.1

方案4.遇到node-sass问题时,可尝试重装下或者用 cnpm 安装

npm rebuild node-sass

相关文章

网友评论

      本文标题:npm install 报错问题解决

      本文链接:https://www.haomeiwen.com/subject/txnialtx.html