我在將Django應用程序推送到Heroku時出現問題。安裝PIL似乎有錯誤。我傳統上遇到PIL b/c問題,我在Windows上,所以使用pip install或easy_install無法正常工作,因爲找不到「vcvarsall.bat」安裝PIL依賴於虛擬環境的Heroku錯誤
因此,作爲一種快速解決方案,我去了this site並跑了安裝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 '[email protected]'
我怎樣才能過去PIL?
謝謝。對django-storage和pypm有同樣的問題 - 有什麼想法? –
和pywin32?被requirements.txt摧毀 –
編輯我的回答以迴應你的問題 –