为什么窗口'该程序仍在运行!你想在调试过程中杀掉它吗?

时间:2013-03-21 20:18:59

标签: python pandas scikit-learn

在调试python代码期间,在输入rf.fit(aa,bb1)并按“enter”按钮后窗口出现。我使用的python版本是python2.7,系统是UBUNTU12.10。

这里'rf = RandomForestClassifier(n_estimators = 50,verbose = 2,compute_importances = True,n_jobs = -1)'是来自sklearn的函数。变量'aa,bb1'如图所示。 'aa'是一个DataFrame,它是Pandas库的数据结构。 'bb1'是一个列表。

enter image description here

你能告诉我什么是错的吗?为什么警告窗口会出来?

1 个答案:

答案 0 :(得分:0)

警告信息为"您的程序仍在运行!\ n您要杀死它吗?"来自lib\pythonX.X\idlelib\PyShell.py

因为您在Python IDEL Shell Env中运行该程序,并且您的脚本现在正在运行,但您想要关闭该窗口。

IDEL是Python GUI Shell的另一个名称。