[Python] from import _imaging as core ImportError:. DLL load failed: The specified module could not be found

Copyright: please indicate the source https://blog.csdn.net/weixin_40937100/article/details/90745671

from import _imaging as core ImportError:. DLL load failed: The specified module could not be found

Reference: https://blog.csdn.net/wy_97/article/details/80234720

Cause of the problem is that the version of the pillow is too low, and import proved not so much

The method is to uninstall the old version and download the new version of the pillow, the following command

  1. Anaconda with cmd into the directory:

python -m pip uninstall pillow

  1. Download the new version:

python -m pip install pillow -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

Guess you like

Origin blog.csdn.net/weixin_40937100/article/details/90745671