pip install + 获取有关重试的错误(重试(总计=4,连接=无,读取=无,重定向=无))

pip install + 获取有关重试的错误(重试(总计=4,连接=无,读取=无,重定向=无))

我们正在尝试安装以下 Jinja (在 redhat 机器版本 7.2 上)

pip install  Jinja2-2.10-py2.py3-none-any.whl
Processing ./Jinja2-2.10-py2.py3-none-any.whl
Collecting MarkupSafe>=0.23 (from Jinja2==2.10)
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))': /simple/markupsafe/

但不明白为什么我们收到这样的消息

 Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror(-3, 'Temporary failure in name resolution'))': /simple/markupsafe/

这里可能有什么问题?

答案1

运行 with 为pip install -vvv我指明了正确的解决方案:我有 SSLKEYLOGFILE 指向 VeraCrypt 驱动程序中的某个位置。
  调试结果给了我以下指针:

FileNotFoundError: [Errno 2] No such file or directory: 'Q:\\WireShark\\ssl.log'

... 解决方案?在 Q: 上安装 VeraCrypt 驱动程序,问题就消失了......

相关内容