[Python] Easy way to create a web application for beginners https://qiita.com/okoppe8/items/4cc0f87ea933749f5a49
When I tried deploying to Heroku referring to the above, I got hooked when installing 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
I solved it below.
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