Как мне избавиться от ошибки в DLL-модуле PIL, загрузка не удалась? - PullRequest
0 голосов
/ 12 ноября 2018

У меня установлена ​​подушка, но нет PIL из-за проблем с зависимостями.Я попытался переустановить подушку несколько раз с помощью команды pip install, а также команды conda install.Ошибка не отображается:

ImportError                               Traceback (most recent call last)
<ipython-input-1-b7f01c2f8cfe> in <module>()
----> 1 from PIL import Image

~\Anaconda3\lib\site-packages\PIL\Image.py in <module>()
     62     # Also note that Image.core is not a publicly documented interface,
     63     # and should be considered private and subject to change.
---> 64     from . import _imaging as core
     65     if __version__ != getattr(core, 'PILLOW_VERSION', None):
     66         raise ImportError("The _imaging extension was built for another " ImportError: DLL load failed: The specified module could not be found.

Ошибка выше внутри модуля PIL

...