J'ai installé Python 3.4 et Python 3.6 sur ma machine locale avec succès, mais je ne parviens pas à installer les packages avec pip3
.
Lorsque j'exécute pip3 install <package>
, j'obtiens l' erreur suivante liée au SSL :
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting <package>
Could not fetch URL https://pypi.python.org/simple/<package>/: There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because the SSL module is not available. - skipping
Could not find a version that satisfies the requirement <package> (from versions: )
No matching distribution found for <package>
Comment puis-je réparer mon installation Python3.x afin de pouvoir installer des packages avec pip install <package>
?
pip3 install --upgrade pip
voir si vous recevez le même message ou non.
sudo apt-get install python3-pip
??