赞
踩
npm install --registry=https://registry.npm.taobao.org
命令安装报错
卡在sprintf-js@1.0.3 checking installable status很短时间,然后报错如下(应该是这个链接国内网速慢):
fatal: unable to access ‘https://github.com/nhn/raphael.git/’
按照网上方法进行试验: 搜索.gitconfig文件(一般在c盘用户目录下,如C:\Users*\路径下),然后加上下面的一段:
[url “https://”]
insteadOf = git://
然后又报错如下:
从上图可以看出是因为将https换成git,其他的一些包的安装又出现问题,也就是不能全用https,也不能全用git,加上个人猜测,上面的一段代码,应该是替换网址的意思,所以我将上面的代码改为如下:
[url “https://github.com/nhn/raphael.git/”]
insteadOf = git://github.com/nhn/raphael.git/
然后
npm install --registry=https://registry.npm.taobao.org
然后就可以运行成功vue-element-admin了,成功后截图如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。