Python使用Pillow包报错 ImportError: DLL load failed while importing _imaging: 找不到指定的程序。

        最近使用Python调用Pillow时报错,代码就两行:

from PIL import Image

print("PyCharm")

报错如下:

Traceback (most recent call last):
  File "C:\Users\Administrator\PycharmProjects\pythonProject\main.py", line 5, in
    from PIL import Image
  File "D:\Python\lib\site-packages\PIL\Image.py", line 94, in
    from . import _imaging as core
ImportError: DLL load failed while importing _imaging: 找不到指定的程序。

Python版本:3.9.0,Pillow:8.4.0

Python使用Pillow包报错 ImportError: DLL load failed while importing _imaging: 找不到指定的程序。_第1张图片

 解决方法:安装旧版Python,我安装的是3.8.2

Python使用Pillow包报错 ImportError: DLL load failed while importing _imaging: 找不到指定的程序。_第2张图片

 再次编译运行,不报错了。

D:\Python38\python.exe C:/Users/Administrator/PycharmProjects/pythonProject/main.py
PyCharm

进程已结束,退出代码为 0

困扰了我一天多的问题,在这里写一下,希望帮帮有需要的人。

你可能感兴趣的:(python,pycharm,开发语言,ide)