Installing django-avatar onto heroku -
i'm trying install django-avatar onto heroku.
i tried django-avatar==2.0a9
in requirements.txt
but got error:
"no distributions matching version django-avatar==2.0a9"
i tried django-avatar==github.com/jezdez/django-avatar/archive/master.zip
, got error:
"no such file or directory: '/app/django-avatar==https:/github.com/jezdez/django-avatar/archive/master.zip"
any thoughts on how can django-avatar installed?
i appreciate time , expertise.
you cannot directly install thing on heroku.
create virtual env ,
install django-avatarin local machine,
update requirements file using pip freeze > requirements.txt
push changes.
refer document https://devcenter.heroku.com/articles/django
Comments
Post a Comment