无法在AIX系统上安装pip

时间:2016-03-30 10:40:21

标签: python-2.7 pip aix

我正在尝试在AIX VM上安装python pip,但是当我尝试时,我遇到了很多错误。任何人都可以帮助我。

python get-pip.py

/tmp/tmpqZBZXW/pip.zip/pip/ vendor / requests / packages / urllib3 / util / ssl .py:315:SNIMissingWarning:已发出HTTPS请求,但SNI(主题名称指示)此平台无法扩展到TLS。这可能导致服务器显示错误的TLS证书,这可能导致验证失败。有关更多信息,请参阅https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning。 /tmp/tmpqZBZXW/pip.zip/pip/vendor/requests/packages/urllib3/util/ssl.py:120:InsecurePlatformWarning:真正的SSLContext对象不可用。这可以防止urllib3正确配置SSL,并可能导致某些SSL连接失败。有关更多信息,请参阅https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning。 要求已经是最新的:pip in /opt/freeware/lib/python2.7/site-packages

1 个答案:

答案 0 :(得分:2)

您问题中的第一个网址非常清楚地解释了事情。你有一个旧的蟒蛇链接可能是一个旧的openssl。

https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning

  

某些Python平台(特别是早期的Python版本)   超过2.7.9)他们的ssl模块限制了   urllib3可以应用的配置。特别是,这可能导致   在更具特色的平台上成功的HTTPS请求   失败,并可能导致某些安全功能不可用。

     

如果您遇到此警告,强烈建议您:

  • 升级到较新的Python版本
  • 使用pip升级ndg-httpsclient
  • 安装--upgrade ndg-httpsclient
  • 使用pyOpenSSL,如OpenSSL / PyOpenSSL部分所述