fatal: unable to connect to github.com

1.背景

下载这个项目vue-element-admin-master的依赖的时候报错

npm ERR! Error while executing:
npm ERR! D:\Program File\11_git\Git\mingw64\bin\git.EXE ls-remote -h -t git://://github.com/nhn/raphael.git
npm ERR!
npm ERR! fatal: unable to connect to github.com:
npm ERR! github.com[0: 20.205.243.166]: errno=Unknown error
npm ERR!
npm ERR!
npm ERR! exited with error code: 128

2.原因

网络问题,但是自己的代理,浏览器访问都可以的。

3.解决

git config --global url."https://".insteadOf git://

将git://github.com/nhn/raphael.git 将这个地址更改为https://github.com/nhn/raphael.git后解决。

4.无效方案

npm install --registry=https://registry.npmmirror.com/ (网址说用淘宝代理但是我一直有用,无效)

npm cache clean --force (清空缓存无效)

yarn install (无效、不通的报管理工具)

githup配置ssh。(无效,因为拉去这个git的时候本来不需要ssh也可以clone的、我们下载依赖也不需要push,但是网上有说这个可以)

cnpm install (cnpm安装的时候需要更新文件夹的东西,没有权限。赋权、用管理员都不行。cnpm安装不成功。没有用这种方案。cnpm 使用的是淘宝的镜像源。)

你可能感兴趣的:(github,git,vue.js)