我一直在尝试在 Heroku 上部署 Django 应用程序。
一些背景知识——我在构建应用程序时没有使用虚拟环境,但在部署它时,我不得不使用它。我正在按照本教程进行部署。https://medium.com/agatha-codes/9-straightforward-steps-for-deploying-your-django-app-with-heroku-82b952652fb4
现在我被困在第 6 步。创建虚拟环境后,我已将依赖项冻结为requirements.txt
.
但是当我打开部署的 URL 时,它说
ImportError at /
No module named PIL
尽管已经安装了 Pillow,但它在 requirements.txt 中,并且在托管在本地服务器上时运行良好。
这是我的 requirements.txt。
certifi==2018.4.16
dj-database-url==0.5.0
Django==1.11.14
django-heroku==0.3.1
gunicorn==19.9.0
packaging==17.1
Pillow==5.2.0
pip-review==1.0
pipenv==2018.7.1
pkg-resources==0.0.0
psycopg2==2.7.5
pyparsing==2.2.0
pytz==2018.5
six==1.11.0
virtualenv==16.0.0
virtualenv-clone==0.3.0
whitenoise==3.3.1
请帮我解决一下这个。