我在将我的 Django 应用程序推送到 Heroku 时遇到问题。安装 PIL 似乎有错误。传统上,我在 Windows 上遇到了 PIL b/c 问题,因此使用 pip install 或 easy_install 不起作用,因为它找不到“vcvarsall.bat”
所以作为一个快速的解决方案,我去了这个站点并运行了 PIL 的 .exe 版本来安装。我在将 PIL 放到我的虚拟环境中时遇到问题,所以在创建虚拟环境时,我使用它
virtualenv --system-site-packages venv
现在我正在使用
git push heroku master
我要拿回这个
Downloading/unpacking PIL==1.1.7 (from -r requirements.txt)
Could not find any downloads that satisfy the requirement PIL==1.1.7 (line 2))
...
Heroku push rejected, failed to compile Python/Django app
! [remote rejected] m aster -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com...'
我怎样才能通过 PIL?