Python意外退出

时间:2016-10-22 21:05:08

标签: python macos python-2.7 matplotlib

我在Mac OSX 10.9.5上使用ipython 5.1.0运行Python 2.7 当我使用matplotlib.pyplot时,我遇到了一个最常出现的问题,但是当我使用pandas中的进程时发生了这个问题。

我运行的代码的两个例子导致了崩溃: 1)运行mcmc模拟后,使用pandas pymc - 在名为HDDM的特定包中运行它,所以代码是这样的:

m.find_starting_values() 
m.sample(15000, burn=5000, dbname='traces.db', db='pickle')

2)尝试使用matlibplot

绘图后也发生了
fig = plt.figure()
ax = fig.add_subplot(111, xlabel='RT', ylabel='count',title='RTdistributions')
for i, subj_data in data.groupby('subj_idx'):
subj_data.rt.hist(bins=20, histtype='step', ax=ax)

问题是python崩溃了,我收到消息" Python意外退出"。我已在此处https://gist.github.com/anonymous/688186089d164ccbac5857a007efafdb

粘贴了完整的错误消息详细信息

这种情况正在发生,所以我尝试更新相关的软件包并更新了ipython(我不想从python 2.7更新)。有没有人对可能发生的事情有任何想法? 非常感谢,Claire

0 个答案:

没有答案