code 128 ....command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git解决方案
vue-element-admin项目当安装依赖npm install时报错npm ERR! code 128npm ERR! An unknown git error occurrednpm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.gitnpm ERR! fatal: Cou
vue-element-admin项目
当安装依赖npm install
时报错
npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
npm ERR! A complete log of this run can be found in:
解决方案一:
C:\Users\administrator\
目录中的administrator是电脑的主账号,是可以改的,具体目录就看大家自己电脑的主账号名称了
目录下找到文件.gitconfig
打开,在里面添加下面两行,意思是使用https代替git的ssh访问
[url "https://git@github.com/nhn/raphael.git/"]
insteadOf = git://git@github.com/nhn/raphael.git/
下方箭头标记应该严谨缩进四空格,也就是一个tab
再运行安装依赖:
npm install
解决方案二:
有时候这样改了后,还会报错 code 128,但ssh那里提示已经不是nhn的文案了,那么将解决方案一配置文件中添加的两行配置项删除掉
然后运行命令:
git config --global url."https://".insteadOf git://
运行上面命令直接运行安装依赖:
npm install
一般使用上述两种方案能解决问题了
安装超时问题
但是如果碰上网络不咋地的时候,会莫名的报code 1,这时候报一些错是不准确的,看透事实的本质,它就是timeout了。
使用国内镜像也解决不了(国内镜像怎么用,百度去!!!)
大家可以使用一些专业的翻墙工具连一下世界网,然后再运行一下
npm install
code 1问题也解决了
更多推荐
所有评论(0)