0
点赞
收藏
分享

微信扫一扫

C:\Program Files\Git\cmd\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git

践行数据分析 2022-04-20 阅读 101

npm install 出现的问题:

在这里插入图片描述

第一步: 可以清除DNS

执行命令

ipconfig /flushdns

第二步 :

执行npm cache clean --force(有些人这样还是没有用的话,删除package-lock.json再重新尝试一下即可。)

npm cache clean --force

第三步:

两种方法 自己选适合的 本人用的的二种

  • 第一种
git config --global http.sslVerify "false"
git config --global https.sslVerify "false"
  • 第二种
git config --global url."https://".insteadOf git://

前边顺序不分先后

最后 npm install

举报

相关推荐

0 条评论