python不能调用matplotlib_Python:已导入matplotlib,但无法使用imsh
我在Ubuntu中作为Windows机器上的虚拟机guest(作为主机),并尝试从终端运行python脚本。我在使用pip install安装matplotlib时遇到了困难。我设法用sudo apt-get install python-matplotlib但是,我无法打开我在代码中创建的图像:import numpy as npimport matplotlib.pyplot as pltim
我在Ubuntu中作为Windows机器上的虚拟机guest(作为主机),并尝试从终端运行python脚本。我在使用pip install安装matplotlib时遇到了困难。我设法用sudo apt-get install python-matplotlib
但是,我无法打开我在代码中创建的图像:import numpy as np
import matplotlib.pyplot as plt
import random as random
from random import randrange
image = plt.imshow(mymatrix)
plt.show()
如果将matplotlib导入为:
^{pr2}$
尝试运行脚本时收到以下错误:AttributeError: 'module' object has no attribute 'imshow'
如果将matplotlib导入为:import matplotlib.pyplot as plt
我收到以下错误:raise ImportError, str(msg) + ', please install the python-tk package'
ImportError: No module named _tkinter, please install the python-tk
package
在尝试使用“pip install python tk”安装python tk时,我得到的是:~/ising $ pip install python-tk Collecting python-tk Could not find
a version that satisfies the requirement python-tk (from versions: )
No matching distribution found for python-tk
我不确定是否从一开始就错误地安装了matplotlib。我知道pyplot不是用matplotlib自动导入的,从控制台安装它也可以吗?似乎我在这个阶段已经试过了。在
更多推荐
所有评论(0)