当前位置: 首页 > 工具软件 > LibreSSL > 使用案例 >

fatal: 无法访问 LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

司空和悌
2023-12-01

问题1:

        fatal: 无法访问 'https://github.com/xxx/xxx.git/':LibreSSL SSL_connect:         SSL_ERROR_SYSCALL in connection to github.com:443

在使用 HTTPS 连接 GitHub 进行 push/pull 时(即 origin 地址为 https://github.com/xxx/xxx.git),需要更改本地 git 的配置,使用代理向 GitHub 发起请求。

要求:你需要有一个梯子

执行如下命令:

$ git config --global -e

这将进入 git 的配置文件编辑界面(将使用 git 指定的默认编辑器打开)。

在该文件中加入如下内容:

[http]
        proxy = socks5://127.0.0.1:1080
[https]
        proxy = socks5://127.0.0.1:1080

其中“1080”为你的代理软件的指定出入端口,请根据实际情况自行修改。

问题2:

Error installing OpenCV

[!] /usr/bin/curl -f -L -o /var/folders/st/lx5f257x0nz4nmh1s3m9j5cc0000gn/T/d20210901-7550-1ifh6cr/file.zip https://github.com/opencv/opencv/releases/download/3.4.1/opencv-3.4.1-ios-framework.zip --create-dirs --netrc-optional --retry 2 -A 'CocoaPods/1.10.2 cocoapods-downloader/1.5.0'

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current

                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:--  0:02:00 --:--:--     0

curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

解决:

先:  echo insecure >> ~/.curlrc
再进行: pod install即可

 类似资料: