在 OSX 上安装 Erlang/OTP 17.5

Installing Erlang/OTP 17.5 on OSX

official install instructions 说:

If you want to build the wx application, you will need to get wxWidgets-3.0 (wxWidgets-3.0.0.tar.bz2 from http://sourceforge.net/projects/wxwindows/files/3.0.0/) or get it from github with bug fixes:

$ git clone --branch WX_3_0_branch git@github.com:wxWidgets/wxWidgets.git

谁不想修复错误:

$ git clone --branch WX_3_0_branch git@github.com:wxWidgets/wxWidgets.git
Cloning into 'wxWidgets'...
fatal: Remote branch WX_3_0_branch not found in upstream origin

有谁知道错误修复版本在哪里?

回复评论

全部大写,我得到:

$ git clone --branch WX_3_0_BRANCH git@github.com:wxWidgets/wxWidgets.git
Cloning into 'wxWidgets'...
ssh_exchange_identification: read: Connection reset by peer
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

对于未来的搜索者:为了使用上面的 github 命令,you need to setup ssh keys for your computer。我已经这样做了,但出于某种原因,几个小时后它就不起作用了。我新位置的防火墙问题?我不知道。我从收到 Connection reset by peer 错误的地方移到了另一个 location/server,然后我创建了一个新的 ssh 密钥,并且我能够下载并安装 wxWidgets。 git clone 命令只下载源代码,因此您可能希望在发出该命令时处于 ~/Downloads 提示符下。 Erlang 安装指南告诉您如何安装 wxWidgets。

有问题的分支名为 WX_3_0_BRANCH — 全部大写。