|-转 fatal: unable to access ‘https://github.com/nhn/raphael.git/‘: OpenSSL SSL_read: Connection was rese
在项目目录下 ,cmd里执行npm install 或者yarn install时报错fatal: unable to access ‘https://github.com/nhn/raphael.git/‘: OpenSSL SSL_read,网上找了这个办法,还在测试能不能解决。后面测试了,还是不行,依然会报错,可能是这个项目源中用到的依赖已经没有在用了。
错误2: fatal: unable to access https://github.com/nhn/raphael.git/: OpenSSL SSL_read: Connection was reset, errno 10054
原因:下载安装的依赖包太大,导致git请求超时了,可以通过修改git http.postBuffer的大小来解决此问题。
解决方案:
*修改postBuffer值 注:524288000(500Mb)*可以自己根据情况设置
git config --global https.postBuffer 524288000
若想要更直观的修改配置,可以直接打开配置文件进行修改
打开并编辑git配置文件
git config --edit --global
将如下内容添加至配置文件
[http]
postBuffer = 524288000
[url "https://"]
insteadOf = git://
特别注意: 由于Github位于外网,故改动后仍会因为网络原因造成install失败的几率,可以多尝试npm install几次, 其他相关问题大概率切换npm源能解决问题 ...
浏览更多内容请先登录。
立即注册
更新于:2022-10-17 18:24:55
相关内容
小技巧:apache启动错误 AH00072: make_sock: could not bind to address ...
magento安装遇到的问题,注册magento.com
6 Steps to Install Magento 2 on CentOS [Latest] - Sample Data
magento安装时报错The store that was requested wasn't found. Verify the...
magento命令行安装成功后,在浏览器直接用ip加目录访问不到网站,要配置虚拟主机
Magento Composer安装时,必要时直接忽略版本 composer install --ignore-p...
Magento 介绍
Call to undefined function mysql_connect() 解决方法汇总
php报错 Error: Variable 'sql_mode' can't be set to the value of 'M...
PHP报错:Constants may only evaluate to scalar values
推荐内容