GnuTLS recv error (-110)

fatal: unable to access ‘https://github.com/facebookresearch/pytorch3d.git/‘: GnuTLS recv error (-110): The TLS connection was non-properly terminated.

解决:

  1. apt-get install gnutls-bin
  2. git config --global http.sslVerify false
  3. git config --global http.postBuffer 1048576000

GnuTLS recv error (-54): Error in the pull function.

fatal: unable to access ‘https://github.com/facebookresearch/pytorch3d.git/‘: GnuTLS recv error (-54): Error in the pull function.

检查是不是没有安装 openSSL。安装方式:

  1. apt-get install libssl-dev

然后可能会再次报错 GnuTLS recv error (-110),重新按(-110)里的再配置一遍即可。