当前位置:  开发笔记 > 编程语言 > 正文

Enthought + PyCharm - 不能再显示情节了

如何解决《Enthought+PyCharm-不能再显示情节了》经验,为你挑选了1个好方法。

我在Mac OS X PyCharm上设置了Enthought作为解释器:

~/Library/Enthought/Canopy_64bit/User

但是,它没有显示来自matplotlib的任何图.

import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()

这只是给了我Out[124]: .它没有显示情节,也没有做任何其他事情.没有错误,没有.



1> 小智..:

你错过了对将显示绘图项的show()函数的调用.

import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
plt.show()

PyCharm很可能没有在matplotlib的交互模式下配置.

推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有