嘗試將Django項目部署到Heroku上的新應用程序(該代碼在過去兩年中在其他實例上運行) - 並被此命中:Heroku上的新部署失敗,因爲「使用 - 允許未驗證的PIL允許」
Downloading/unpacking PIL==1.1.7 (from -r requirements.txt (line 7))
Could not find any downloads that satisfy the requirement PIL==1.1.7 (from -r requirements.txt (line 7))
Some insecure and unverifiable files were ignored (use --allow-unverified PIL to allow).
Cleaning up...
No distributions at all found for PIL==1.1.7 (from -r requirements.txt (line 7))
Storing debug log for failure in /app/.pip/pip.log
! Push rejected, failed to compile Python app
我所知,最近在pip
的變化,並希望使用是安全的包,但直到所有的都可以適當地包裝成每點的預期,我們需要一些解決方法。特別是缺乏 - 全部未經驗證的標誌使得這是一個反覆試驗而不是無痛部署的黑匣子練習。
有沒有一種理智的方式來克服這個障礙? (不只是PIL,但這是第一個失敗的包,還有其他幾個像pyPdf,如果我設法解決這個問題,將會失敗)
任何指針讚賞!
這僅僅是我還是一個耗時且痛苦的過程?如果你看看其他的工具,如npm或bundler,他們不會提供一個關於未經驗證的廢話......反正只是在咆哮...... –
對於像我這樣的其他人:確保你使用的是最近版本的pip ....或者你可以試試這個並且失敗。我特意被告知當我這樣做時找不到一些版本。升級點本身讓我過去了。 – wilbbe01