Si vous êtes un débutant en Python mais que vous souhaitez utiliser AWS en imitant l'apparence et essayez de supprimer boto3 pip installer boto3 Je ne peux pas.
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? Ce n'est pas le cas, car j'ai copié la commande de Pypi.
Lorsque j'ai recherché l'erreur sur Google, un article est apparu dans lequel je ne lui faisais pas confiance à cause du certificat, alors je l'ai exécuté. https://qiita.com/agajo/items/73d6f14855da703972e0
Mais ça ne marche pas.
Si vous regardez la page pip sur le Site officiel
`Dans un environnement avec plusieurs versions de Python installées, vous devez spécifier dans quel environnement d'exécution Python installer le package. ''
une. En parlant de cela, en vous rappelant que 2.x a été installé en raison d'un autre système, spécifiez la version et exécutez
py -3 -m pip install boto3
Résolu en toute sécurité
Recommended Posts