You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2018. It is now read-only.
The AttributeError: 'module' object has no attribute 'PROTOCOL_SSLv3' is showed when running get-pip.py. The problem is that the requests package in get-pip.py is old one which expects ssl.PROTOCOL_SSLv3 exists. However, this is not the case because SSLv3 is insecure now and distro likes Debian remove it from OpenSSL using OPENSSL_NO_SSLv3. This behavior is compliance with official Python document, and requests upstream had fix not to assume ssl.PROTOCOL_SSLv3 exists.
Please help to update the content of get-pip.py so that the error will not happen, thanks.
The text was updated successfully, but these errors were encountered:
The
AttributeError: 'module' object has no attribute 'PROTOCOL_SSLv3'
is showed when running get-pip.py. The problem is that the requests package inget-pip.py
is old one which expectsssl.PROTOCOL_SSLv3
exists. However, this is not the case because SSLv3 is insecure now and distro likes Debian remove it from OpenSSL usingOPENSSL_NO_SSLv3
. This behavior is compliance with official Python document, and requests upstream had fix not to assumessl.PROTOCOL_SSLv3
exists.Please help to update the content of
get-pip.py
so that the error will not happen, thanks.The text was updated successfully, but these errors were encountered: