Wenn Sie ein Anfänger in Python sind, aber AWS betreiben möchten, indem Sie das Erscheinungsbild imitieren und versuchen, boto3 zu löschen pip install boto3 Ich kann nicht.
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting boto3
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/boto3/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/boto3/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/boto3/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/boto3/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/boto3/
Could not fetch URL https://pypi.org/simple/boto3/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/boto3/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Could not find a version that satisfies the requirement boto3 (from versions: )
No matching distribution found for boto3
Typo? Es ist nicht so, weil ich Pypis Befehl kopiert habe.
Als ich den Fehler gegoogelt habe, erschien ein Artikel, dem ich aufgrund des Zertifikats nicht vertraute, also habe ich ihn ausgeführt. https://qiita.com/agajo/items/73d6f14855da703972e0
Aber es funktioniert nicht.
Wenn Sie sich die Pip-Seite auf der [offiziellen Website] ansehen (https://www.python.jp/install/windows/pip.html)
`In einer Umgebung mit mehreren installierten Python-Versionen müssen Sie angeben, in welcher Python-Ausführungsumgebung das Paket installiert werden soll. ``
ein. Apropos, denken Sie daran, dass 2.x aufgrund eines anderen Systems installiert wurde, geben Sie die Version an und führen Sie sie aus
py -3 -m pip install boto3
Sicher gelöst
Recommended Posts