背景
运行一个Vue
项目,使用npm
进行依赖安装出现以下异常信息:
异常信息
npm ERR! code 128
npm ERR! Command failed: git clone –depth=1 -q -b 2.2.0-c https://github.com/nhn/raphael.git D:\Program Files\nodejs\node_cache_cacache\tmp\git-clone-a498c440 –config core.longpaths=true
npm ERR! warning: templates not found in C:\Users\finder\AppData\Local\Temp\pacote-git-template-tmp\git-clone-c4102267
npm ERR! fatal: unable to access ‘https://github.com/nhn/raphael.git/’: OpenSSL SSL_read: Connection was aborted, errno 10053
异常处理
因为node
使用了git
克隆了github
上的相关联的项目,所以这个异常需要对git
进行相关设置。打开git命令行,依次输入以下命令回车即可:
git config --global http.postBuffer 524288000
git config --global http.sslVerify "false"
转载请注明:清风亦平凡 » OpenSSL SSL_read: Connection was aborted, errno 10053 异常处理