[Python] Un moyen simple de créer des applications Web pour les débutants en programme https://qiita.com/okoppe8/items/4cc0f87ea933749f5a49
Quand j'ai essayé de déployer sur Heroku en faisant référence à ce qui précède, je suis devenu accro lors de l'installation de django-heroku
.
pip install gunicorn django-heroku
Could not fetch URL https://pypi.org/simple/django-heroku/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/django-heroku/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
ERROR: Could not find a version that satisfies the requirement django-heroku (from versions: none)
ERROR: No matching distribution found for django-heroku
Je l'ai résolu ci-dessous.
brew reinstall python
SSL module in Python is not available (on OSX) https://stackoverflow.com/questions/58280484/ssl-module-in-python-is-not-available-on-osx
Recommended Posts