2

我正在使用我的(相当旧的)Macbook 和 macOS 10.10。我一直在努力使用自制软件安装以下程序:ffmpeg、cairo 和 sox。每当我运行brew install ffmpeg它时,它都会运行良好,直到最终,我遇到以下错误:

==> Downloading https://download.gnome.org/sources/glib/2.64/glib-2.64.3.tar.xz

curl: (35) SSL peer handshake failed, the server most likely requires a client certificate to connect
Error: Failed to download resource "glib"
Download failed: https://download.gnome.org/sources/glib/2.64/glib-2.64.3.tar.xz

据我所知,正在使用的 cURL 版本存在问题,它不支持 OpenSSL,并且 SecureTransport 正在阻碍。我在运行时看到了这个:

curl 7.43.0 (x86_64-apple-darwin14.0) libcurl/7.43.0 SecureTransport zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz UnixSockets

似乎正在使用的 cURL 是操作系统内置的,我尝试通过$PATH在 my 中编辑 my 切换到自制软件.bash_profile,然后运行以下命令,再次找到 SecureTransport:

$ which curl
/usr/local/opt/curl/bin/curl
$ curl -V
curl 7.71.1 (x86_64-apple-darwin14.5.0) libcurl/7.71.1 SecureTransport zlib/1.2.5
Release-Date: 2020-07-01

但这无济于事。我也试过了brew upgradebrew uninstall curl但是brew install curl-openssl这个自制软件安装也遇到了同样的 curl(35) 错误。

如何禁用 SecureTransport?还有其他可能的解决方法吗?我有必要将我的 macOS 更新到更新的版本吗?

4

1 回答 1

0

首先,对你的情况感到很遗憾,因为 homebrew 只支持最新的三个 MacOS 版本(目前是 high-sierra、mojave 和 catalina),这也符合苹果的安全补丁政策。

其次,关于你的glib下载问题,我自己做了一个下载,现在看起来工作正常(我们通常使用bintray自制镜像来缓解这样的问题),但我只是检查了自制核心代码库,我们没有 gnome 源工件的镜像虽然(希望你不会再遇到这样的问题)。

第三,关于如何覆盖 MacOS 默认的 curl,你可以只做echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> ~/.bash_profile && source ~/.bash_profile.

这是我在本地之前/之后的内容:

$ ls -al $(which curl)
-rwxr-xr-x  1 root  wheel  185072 May 20 04:14 /usr/bin/curl

$ curl --version
curl 7.54.0 (x86_64-apple-darwin18.0) libcurl/7.54.0 LibreSSL/2.6.5 zlib/1.2.11 nghttp2/1.24.1
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz HTTP2 UnixSockets HTTPS-proxy
$ ls -al $(which curl)
-r-xr-xr-x  1 rchen  staff  209876 Jul  4 15:58 /usr/local/opt/curl/bin/curl

$ curl --version
curl 7.71.1 (x86_64-apple-darwin18.7.0) libcurl/7.71.1 SecureTransport zlib/1.2.11
Release-Date: 2020-07-01
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS IPv6 Largefile libz NTLM NTLM_WB SSL UnixSockets

最后的评论是,如果您不必安装最新ffmpegcairo, 和sox, 我可能会为您找到MacOS 10.10.

希望能帮助到你。

于 2020-07-04T20:02:32.583 回答