6

我无法安装自制软件。

我试过的方法:

  1. 更改 http_proxy 值`export http_proxy=http://127.0.0.1:10818;export https_proxy=http://127.0.0.1:10818;
  2. 提高 postBuffer 值 git config --global http.postBuffer 5242880000
  3. 更改脚本使用ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"而不是/usr/bin/ruby -e "$(curl -fsSL... 它工作。谁能解释它为什么起作用?谢谢

终端一直显示此消息

==> Downloading and installing Homebrew...
remote: Enumerating objects: 22, done.
remote: Counting objects: 100% (22/22), done.
remote: Compressing objects: 100% (16/16), done.
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
Failed during: git fetch origin master:refs/remotes/origin/master --tags --force
4

3 回答 3

1

我遇到了同样的问题,我认为我们有同样的问题,当我安装 homebrew/core 时它总是会中断:

error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno
54 fatal: the remote end hung up unexpectedly fatal: early EOF fatal:
index-pack failed Failed during: git fetch --force origin
refs/heads/master:refs/remotes/origin/master

我使用这些资源来解决问题 Homebrew install: Failed during: git fetch origin master:refs/remotes/origin/master -n --depth=1

https://www.programmersought.com/article/74365494100/

我的步骤:

  1. 我删除了所有与 Homebrew 相关的文件夹,您在安装运行开始时找到它们:(放入脚本并运行,因为您可能需要多次运行,比如我:/)==> 此脚本将安装:

    /usr/local/bin/brew /usr/local/share/doc/homebrew /usr/local/share/man/man1/brew.1 /usr/local/share/zsh/site-functions/_brew /usr/local /etc/bash_completion.d/brew /usr/local/Homebrew

  2. 我确保所有网络连接都正常,我可以 ping github.com

  3. 我确保我的电子邮件已分配给 github 上的帐户

    git config --global user.email yourgitemail@example.com

  4. 正如您确实增加了后缓冲区值

    git config --global http.postBuffer 5242880000

  5. 修改 ssl 传输的安全设置

    git config --globle http.sslVerify "false"

然后一切正常并开始下载。我没有坏,但花了很长时间......我记得离开我的 MacBook Pro 并在很长一段时间后回来,它仍在传输......我希望我能提供帮助。

我花了一整天的时间来解决它,但是如果您需要更多帮助,这两个链接包含所有详细信息。

于 2021-02-14T16:51:19.990 回答
1

我为此搞砸了几个小时,并在此处和其他一些站点上尝试了所有提到的修复程序。

这是一个打开 VPN 的简单案例

于 2021-11-25T22:33:23.383 回答
0

在 ubuntu 20.04 中,转到文件菜单,选择“其他位置”,选择“计算机”,选择“主”文件夹。右键单击并“在终端中打开”。

输入“sudo rm -rf linuxbrew”。再次尝试安装。如果仍然弹出错误,请输入“git config --global user.email '<your git email'”现在再次尝试安装。

于 2021-07-20T19:10:48.520 回答