vue-element-admin下载(设置)中文版
国内(仓库已暂停):
git clone -b i18n https://gitee.com/panjiachen/vue-element-admin.git
国外:
git clone -b i18n https://github.com/PanJiaChen/vue-element-admin.git
npm install 报错如下时:
npm ERR! fatal: unable to connect to github.com:
npm ERR! github.com[0: xxxxxx]: errno=No error
npm ERR!
解决方案:
1、百度出来的结果
$ git config --global url."https://".insteadOf git://
2、如果不行就找 c:用户.gitconfig 这个文件。如果在c盘还是找不到~那么你找到你安装git的目录。
通常都在Gitmingw64etc 里面的
把这段添加上去
[url "https://"]
insteadOf = git://
然后重新 npm i 就安装完成了。。。
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭