[Python] Einfache Möglichkeit, eine Web-App für Anfänger zu erstellen https://qiita.com/okoppe8/items/4cc0f87ea933749f5a49
Als ich versuchte, mich auf Heroku zu beziehen, war ich bei der Installation von "Django-Heroku" begeistert.
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
Ich habe es unten gelöst.
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