我已經開始在Python中使用圖像,我想開始使用PIL(Pillow)。要安裝它,我跑了pip install Pillow
。安裝時,先前未安裝PIL。我也嘗試卸載它並重新安裝它,以及使用pip3 install Pillow
。PIL:DLL加載失敗:無法找到指定的程序
當我在Python運行它,我的第一行是:
File "C:\Program Files\Python36\lib\site-packages\PIL\Image.py", line 56, in <module>
from . import _imaging as core
ImportError: DLL load failed: The specified procedure could not be found.
我檢查了目錄和文件_imaging.cp36-win_amd64.pyd是PIL文件夾下存在。
爲什麼會發生這種情況,如果所需的DLL在那裏?我該如何解決它?
如果您將_ \ _ imaging.cp36-win \ _amd64.pyd_重命名爲_ \ _ imaging.pyd_,會發生什麼情況? – CristiFati
我試過這樣做,但沒有幫助。我收到了和以前一樣的錯誤。 – MLavrentyev
什麼是您正在運行的_Win_版本(我懷疑與架構不匹配有關)? – CristiFati