python – pydev importerror:没有名为thread的模块,pydev升级后调试不再有效

我的Eclipse 3.6 / PyDev设置只是将pydev升级到1.6.0.2010071813并且调试不再有效.我的默认python解释器是3.1虽然我怀疑这很重要.在pydev的Eclipse升级之前,它运行得非常好.

解决方法:

这已经在当前的夜间修复(1.6.1).有关获取它的详细信息,请参阅:http://pydev.org/download.html.

请注意,您只需在本地更改“导入线程”(在org.python.pydev.debug / pysrc / pydevd.py中):

try:    
    import thread 
except ImportError:
    import _thread as thread #Py3K changed it.

干杯,

法比奥

上一篇:hive 中 Order by, Sort by ,Dristribute by,Cluster By 的作用和用法


下一篇:如何在hadoop控制map个数