I'm having problems pushing my Django app to Heroku. There seems to be an error with installing PIL. I've traditionally had a problem with PIL b/c I'm on Windows, so using pip install or easy_install doesn't work because it can't find "vcvarsall.bat"
So as a quick solution, I went to this site and ran teh .exe version of PIL to install. I had problems getting PIL onto my virtual environment, so when creating the virtual environment, I use this
virtualenv --system-site-packages venv
Now I'm using
git push heroku master
and I'm getting this back
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...'
How can I get past PIL?
