Zainstalowałem Python 3.4 i Python 3.6 na moim komputerze lokalnym, ale nie mogę zainstalować pakietów z pip3
.
Kiedy wykonuję pip3 install <package>
, otrzymuję następujący błąd związany z 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>
Jak mogę naprawić moją instalację Python3.x, aby móc instalować pakiety z pip install <package>
?
pip3 install --upgrade pip
i sprawdź, czy otrzymujesz tę samą wiadomość, czy nie.
sudo apt-get install python3-pip
?