git clone出现的网络问题
$ git clone https://github.com/XingangPan/GAN2Shape.git
Cloning into ‘GAN2Shape’…
error: RPC failed; curl 28 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0
fatal: expected ‘packfile’
这个错误 error: RPC failed; curl 28 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0 通常是由于网络问题或者SSL/TLS连接问题导致的。
解决办法:
如果GitHub仓库允许HTTP访问(虽然这通常不推荐,因为它不加密传输的数据),你可以尝试将克隆命令中的 https:// 改为 http:// 来看看是否可以解决问题。