import matplotlib.pyplot as plt
import numpy as np
plt.style.use('seaborn-white')
ax1 = plt.axes()
ax2 = plt.axes([0.65, 0.65, 0.2, 0.2])
plt.show()
我已经使用“sudo apt-get install python3-matplotlib”安装了 matplotlib,我也尝试使用“pip”和“pip3”安装它,但是,我得到的响应是 matplotlib 已经安装了最新版本,如果我运行我的代码,我会得到“ImportError:没有名为 matplotlib.pyplot 的模块”。
答案1
我通过删除 ubuntu 操作系统附带的 python 2 包并删除 python 3 包然后再次仅安装 python 3 包来完成此操作。然后它就起作用了。