I'm newbie Python/Django programmer.
I created an application based on Django 2.0 and packaged it according to the official document. Then I run the command:
$ pip install --user django-easybuggy-0.1.tar.gz
However, I get the error and cannot install.
Processing ./django-easybuggy-0.1.tar.gz
Collecting certifi==2018.1.18 (from django-easybuggy==0.1)
Could not find a version that satisfies the requirement certifi==2018.1.18 (from django-easybuggy==0.1) (from versions: )
No matching distribution found for certifi==2018.1.18 (from django-easybuggy==0.1)
Does anyone know the reason why the error occurs and how to fix it?
In addition, I created requirements.txt
by the command:
$ pip freeze > requirements.txt
Steps to reproduce:
Download my application archive:
$ wget https://github.com/k-tamura/easybuggy4django/releases/download/0.0.1/django-easybuggy-0.1.tar.gz
Run the command:
$ pip install --user django-easybuggy-0.1.tar.gz
Best regards,