Die folgende Warnung wird jetzt in Python angezeigt
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Hier Es gibt eine Geschichte über ähnliche Symptome, und ich denke, dass die Installation der Paketanforderungen [Sicherheit] wie folgt Abhilfe schafft.
python
sudo apt-get install python-dev libffi-dev build-essential
sudo pip install requests[security]
Danach verschwand diese Warnung. War gut.
Recommended Posts