Django based website having error with Pillow after deployment to Heroku Server while I want to migrate. (DB = Postgresql)

I have deployed my website based on django to Heroku, and changed my database from sqlite3 to postgresql, and when i want to migrate having an error with Pillow. Asking to install Pillow for working With Images. However, I have already installed to my project and added to requirements.txt

(fields.E210) Cannot use ImageField because Pillow is not installed. HINT: Get Pillow at https://pypi.org/project/Pillow/ or run command "python -m pip install Pillow".

While I have checked with

heroku run pip list

there is no pillow installed, Thus i have several time tried to reinstall and git push. Moreover used heroku bash to install and even restarted it. But no sense, having same issues

Back to Top