Pydev importerror: no module named thread, debugging no longer works after pydev update

My setup of Eclipse 3.6 / PyDev just updated pydev to 1.6.0.2010071813 and debugging no longer works. My python interpreter is 3.1 by default, although I doubt it matters. Prior to the Eclipse pydev update, it worked very well.

+3
source share
3 answers

This is already fixed in the current night (1.6.1). See http://pydev.org/download.html for more information on getting it .

Note that you can simply change this “import stream” locally (in org.python.pydev.debug / pysrc / pydevd.py) to:

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

Greetings

Fabio

+6

1.5.9. Eclipse , . 1.5.9. python 3.1

+1

, MacOs 10.6. , . Python 2.6 2.6.5, MacPorts, . , ?

: Linux ( Eclipse:-)) . Mac.

0

All Articles