我正在做一个项目,matplotlob库出现错误

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

发生异常:ImportError 导入 _cext 时 DLL 加载失败:找不到指定的模块。 文件“C:\Users\KTC\Desktop\Car Price\Car Price Prediction.py”,第 4 行,位于 将 matplotlib.pyplot 导入为 plt ImportError:导入 _cext 时 DLL 加载失败:找不到指定的模块。

我正在创建汽车价格预测项目并安装了所有库,但发生了此错误

matplotlib
1个回答
0
投票

该错误是由于您的系统上缺少 Microsoft Visual C++ Redistributable 软件包造成的。

在终端中运行此代码:

pip install msvc-runtime

另外你可以查看微软官方网站:

https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist

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