python 导入映像时DLL加载失败(_I):

cyvaqqii  于 2023-02-18  发布在  Python
关注(0)|答案(1)|浏览(274)

我正在运行我的Python程序,这些是我要导入的模块:
从tkinter导入 * 从functools导入部分
导入numpy作为np导入matplotlib matplotlib.use(“TkAgg”)
从matplotlib.figure导入图从matplotlib.backends.backend_tkagg导入图画布TkAgg,导航工具栏2Tk
我总是以下面的错误消息结束:

C:\Users\HP\anaconda3\lib\site-packages\numpy\__init__.py:138: UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service
  from . import _distributor_init
Traceback (most recent call last):
  File "ASRS.py", line 12, in <module>
    from matplotlib.figure import Figure
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\figure.py", line 18, in <module>
    from matplotlib import docstring, projections
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\projections\__init__.py", line 1, in <module>
    from .. import axes, docstring
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\axes\__init__.py", line 1, in <module>
    from ._subplots import *
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\axes\_subplots.py", line 6, in <module>
    from matplotlib.axes._axes import Axes
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\axes\_axes.py", line 14, in <module>
    import matplotlib.contour as mcontour
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\contour.py", line 17, in <module>
    import matplotlib.text as text
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\text.py", line 16, in <module>
    from .textpath import TextPath  # Unused, but imported by others.
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\textpath.py", line 11, in <module>
    from matplotlib.mathtext import MathTextParser
  File "C:\Users\HP\AppData\Roaming\Python\Python38\site-packages\matplotlib\mathtext.py", line 27, in <module>
    from PIL import Image
  File "C:\Users\HP\anaconda3\lib\site-packages\PIL\Image.py", line 94, in <module>
    from . import _imaging as core
**ImportError: DLL load failed while importing _imaging: Belirtilen modül bulunamadı.**

我该怎么补救呢?

3wabscal

3wabscal1#

简单地升级包“枕头”(使用Anaconda环境)对我来说就解决了这个问题。

pip install --upgrade Pillow

相关问题