导入matplotlib时找不到_cext模块

问题描述 投票:0回答:1

导入

matplotlib
时,我收到如下错误:

ImportError: DLL load failed while importing _cext: The specified module could not be found.

我在 python 3.10、3.11 和 3.12 中遇到此错误
任何人都可以帮我解决这个错误吗?

python matplotlib dll visualization
1个回答
0
投票

请参阅此处此处此处


这是 Windows 10 上特定版本的 Maptplotlib(3.3.1、3.5;可能更多)和 Python(3.7 和 3.10;可能更多)的“已知问题”。

根据 Thomas A. Casswell

(Matplotlib 项目负责人)的说法,该问题是由依赖项引起的 (kiwisolver

),如果未正确安装,他建议重新安装。
尽管如此,您仍然可以尝试使用 

pip install msvc-runtime

修复它。

如果一切都失败了,您可以通过卸载并重新安装来彻底清除。

© www.soinside.com 2019 - 2024. All rights reserved.