root@DESKTOP-0CU081I:/# git clone https://github.com/petergeoghegan/benchmarksql Cloning into 'benchmarksql'... fatal: unable to access 'https://github.com/petergeoghegan/benchmarksql/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.怎么解决
时间: 2023-08-11 20:08:42 浏览: 143
这个错误通常是由于网络连接问题引起的,建议您尝试以下几种方法来解决它:
1. 检查您的网络连接是否正常,可以尝试重新启动您的网络设备或者更换网络环境。
2. 检查您的防火墙设置,确保您的防火墙没有阻止 Git 访问 GitHub。
3. 尝试使用 SSH 协议克隆代码库,这样可以避免 HTTPS 连接中断的问题。
4. 如果以上方法都不能解决问题,您可以尝试通过代理访问 GitHub,或者通过 VPN 连接到其他地区的网络。
相关问题
WARNING: Implying --no-binary=:all: due to the presence of --build-option / --global-option / --install-option. Consider using --config-settings for more flexibility. DEPRECATION: --install-option is deprecated because it forces pip to use the 'setup.py install' command which is itself deprecated. pip 23.1 will enforce this behaviour change. A possible replacement is to use --config-settings. Discussion can be found at https://github.com/pypa/pip/issues/11358 DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453 Collecting git+https://github.com/vallis/libstempo.git Cloning https://github.com/vallis/libstempo.git to /tmp/pip-req-build-yxnze2mi Running command git clone --filter=blob:none --quiet https://github.com/vallis/libstempo.git /tmp/pip-req-build-yxnze2mi
您好!欢迎来到CSDN知道!您的问题是关于使用pip克隆GitHub上的库到本地的问题。对于这个问题,您可以尝试以下步骤:
1. 确认您已经安装了Git工具。如果没有安装,请先安装Git。
2. 打开命令行终端,并导航到您想要克隆库的目录。
3. 运行以下命令进行克隆:
```
git clone https://github.com/vallis/libstempo.git
```
这将克隆库到当前目录下的一个名为"libstempo"的文件夹中。
完成上述步骤后,您将在本地成功克隆GitHub上的库。希望对您有所帮助!如果您有任何其他问题,请随时提问。
PS D:\vuxmu> git clone https://github.com/vuejs/vue.git Cloning into 'vue'... fatal: unable to access 'https://github.com/vuejs/vue.git/': Recv failure: Connection was reset
很抱歉你遇到了这个问题。这个错误通常是由于网络连接问题导致的。你可以尝试以下几个解决方案:
1. 检查你的网络连接:确保你的网络连接正常,并且没有任何防火墙或代理服务器阻止你的访问。
2. 使用SSH协议克隆:尝试使用SSH协议而不是HTTPS协议来克隆仓库。在克隆命令中使用SSH链接:
```
git clone git@github.com:vuejs/vue.git
***
阅读全文