После того, как я включил команду «release: python manage.py migrate» в мой Procfile, я получаю следующую ошибку, когда я помещаю файлы в heroku:
Cannot use ImageField because Pillow is not installed.
remote: HINT: Get Pillow at https://pypi.org/project/Pillow/ or run
command "pip install Pillow".
Затем я добавил подушку в свой Pipfile:
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
[packages]
django = "*"
gunicorn = "*"
django-heroku = "*"
django-crispy-forms = "*"
django-multiselectfield = "*"
django-session-timeout = "*"
Pillow = "*"
[requires]
python_version = "3.6"
Я выполнил команду "git add Pipfile Pipfile.lock" и отправил ее в heroku, а ошибка все еще там.