npm ERR! Error while executing:
npm ERR! D:\Program Files\Git\cmd\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git
npm ERR!
npm ERR! fatal: unable to access 'https://github.com/nhn/raphael.git/': OpenSSL SSL_read: Connection was reset, errno 10054
npm ERR!
npm ERR! exited with error code: 128
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\win10\AppData\Roaming\npm-cache\_logs\2022-01-24T09_16_42_757Z-debug.log
代理问题记录一下
需要在~/.gitconfig中加入代理
[http]
proxy = http://ip:port
[https]
proxy = http://ip:port
重新npm install,OK!
|