Mac上安装Theos遇到的问题

1,756 阅读1分钟

20210808

  1. 早上打开电脑发现昨天刚安装好的在~/theos文件夹的内容全被被删除了,非常的奇怪
  2. 今天安装的时候,又遇到了SSL_ERROR_SYSCALL这个问题,发现用昨天拿的办法行不通。 于是尝试了这些操作:
    1. 通过ssh的方式代替http来clone,发现不行
    2. 换个网络,比如连接iPhone的热点,不行
    3. Monocloud代理换成不同的节点,结果可以了,看来还是网络慢的原因。
  3. 另外:
git clone --recursive git@github.com:theos/theos.git $THEOS

这个命令如果没有完全成功的话,可以在~/theos/目录下敲下面命令

git submodule update --init

===================

20210807 Mac上安装Theos的时候遇到问题: fatal: unable to access 'github.com/theos/heade…': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

MonoProxy设置如下:

  1. 勾选IPv6 Support
  2. 勾选Exclude simple hostnames 如图 Screen Shot 2021-08-07 at 6.11.40 PM.png
  3. 另外github clone的方式从HTTP改为ssh,如下

git clone --recursive git@github.com:theos/theos.git $THEOS