pip install requests [security]本身会抛出InsecurePlatform警告/错误

时间:2018-06-07 14:38:00

标签: python https pip

运行pip以通过https安装软件包

  

InsecurePlatformWarning

是一个自我描述的“警告”,实际上是错误。它会导致pip安装失败。修复方法是使用

安装安全功能
pip install requests[security]

pip install pyOpenSSL ndg-httpsclient pyasn1

accordingmany不同的StackOverflow和其他线程。

我很确定这个解决方案过去在几台机器上都适用于我。但是,该解决方案在我的一台计算机上抛出相同的错误:

E:\Python27\lib\site-packages\pip\_vendor\requests\packages\urllib3\util\ssl_.py
:122: InsecurePlatformWarning: A true SSLContext object is not available. This p
revents urllib3 from configuring SSL appropriately and may cause certain SSL con
nections to fail. You can upgrade to a newer version of Python to solve this. Fo
r more information, see https://urllib3.readthedocs.io/en/latest/security.html#i
nsecureplatformwarning.
  InsecurePlatformWarning

至于在消息中提出建议来升级Python,我不能用于这个特定的机器和用例。

0 个答案:

没有答案