Pylab:为什么脚本从Canopy命令提示符运行而不是Window的Powershell?

时间:2014-11-15 20:58:53

标签: python command-line

enter image description here

当我尝试在Canopy 64位命令提示符下运行下面的Python脚本时,它可以工作但是当我在标准Window的Powershell上尝试它时,它给了我一个ImportError(见图)。我以同样的方式运行文件。我cd到正确的目录然后键入python ex.py

我注意到其他scipy模块也会发生这种情况。

from pylab import *

t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
plot(t, s)

xlabel('time (s)')

ylabel('voltage (mV)')

title('About as simple as it gets, folks')

grid(True)

savefig("test.png")

show()

0 个答案:

没有答案