我正在尝试导入pylab,这是我正在编写的代码。
import pylab
pylab.figure(1)
pylab.plot([1,2,3,4],[1,7,3,5])
pylab.show()
但我收到错误
File "E:\mitedx1\mitedx2\week1\pylab.py", line 2, in <module>
import pylab
File "E:\mitedx1\mitedx2\week1\pylab.py", line 4, in <module>
pylab.figure(1)
AttributeError: 'module' object has no attribute 'figure'
[Finished in 0.1s with exit code 1]
我试图从这里提供的答案中获得帮助
Anaconda: Unable to import pylab
但没有救援。我还用cmd检查了路径,它显示包含C:\ Anaconda和C:\ Anaconda \ Scripts。解决这个问题的解决方案是什么?
答案 0 :(得分:3)
您调用了脚本pylab.py
,将其重命名为其他内容。
E:\mitedx1\mitedx2\week1\pylab.py # <- you are importing from this not the pylab module
确保同时删除E:\mitedx1\mitedx2\week1\pylab.pyc
文件。