运行pip
以通过https
安装软件包
InsecurePlatformWarning
是一个自我描述的“警告”,实际上是错误。它会导致pip
安装失败。修复方法是使用
pip install requests[security]
或
pip install pyOpenSSL ndg-httpsclient pyasn1
according到many不同的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,我不能用于这个特定的机器和用例。