使用numpy导入matplotlib时出现循环导入和初始化错误

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

我已经尝试卸载并重新安装 matplotlib

当我尝试导入 matplotlib 时遇到以下错误

import numpy as np
import matplotlib

退货:

ImportError: cannot import name 'VisibleDeprecationWarning' from partially initialized module 'numpy' (most likely due to a circular import)

通过注释掉 numpy 并尝试 matplotlib.pyplot 来解决问题

这是我收到的唯一的其他错误。

#import numpy as np
import matplotlib.pyplot

退货:

ImportError: initialization failed

感谢您的宝贵时间。

python numpy matplotlib importerror
1个回答
0
投票

这可能是由于命名空间冲突造成的,例如命名您正在执行的文件

numpy.py
。要解决此问题,请更改您正在执行的脚本的名称。

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