Pydev Debugger在Python升级后停止在Pycharm工作



我使用pycharm。我以前曾在Python 3.3下建立了PYDEV调试器 python /Applications/PyCharm.app/Contents/helpers/pydev/setup_cython.py build_ext --inplace。然后,我不得不更新我的项目以使用Python 3.5下的新虚拟环境,现在调试器将无法运行,并带有以下消息:

/<venv_path>/bin/python3.5 /Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py --multiproc --save-signatures --qt-support --client 127.0.0.1 --port 58286 --file /Applications/PyCharm.app/Contents/helpers/pycharm/pytestrunner.py -p pytest_teamcity <pytest_root> <options>
Testing started at 10:25 AM ...
pydev debugger: process 94521 is connecting
Connected to pydev debugger (build 163.8233.8)
Traceback (most recent call last):
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 1596, in <module>
    globals = debugger.run(setup['file'], None, None, is_module)
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 956, in run
    time.sleep(0.1)  # busy wait until we receive run command
KeyboardInterrupt

我尝试在更新的python版本下重新设计setup_cython.py build_ext --inplace,使我的卡车无效,重新启动,删除我的.idea文件夹,但没有任何东西可以解决上述消息。

我通过清除所有保存的断点来解决此问题。

设置环境变量pycharm_debug = true在启动中导致我达到此分辨率。

最新更新