如何在Pycharm中修复pydev调试器错误?

cld4siwp  于 2022-11-29  发布在  PyCharm
关注(0)|答案(1)|浏览(898)

昨天我更新了我的python,这导致我的调试器不能正常工作。
输出中不断出现以下错误:

-------------------------------------------------------------------------------
pydev debugger: CRITICAL WARNING: This version of python seems to be incorrectly compiled (internal generated filenames are not absolute)
pydev debugger: The debugger may still function, but it will work slower and may miss breakpoints.
pydev debugger: Related bug: http://bugs.python.org/issue1666807
-------------------------------------------------------------------------------
Connected to pydev debugger (build 222.4459.20)
pydev debugger: Unable to find real location for: <frozen codecs>
pydev debugger: Unable to find real location for: <frozen importlib._bootstrap>
pydev debugger: Unable to find real location for: <frozen importlib._bootstrap_external>
pydev debugger: Unable to find real location for: <frozen zipimport>
pydev debugger: Unable to find real location for: <frozen ntpath>
pydev debugger: Unable to find real location for: <frozen genericpath>
pydev debugger: Unable to find real location for: <frozen os>
pydev debugger: Unable to find real location for: <frozen _collections_abc>
pydev debugger: Unable to find real location for: <string>
pydev debugger: Unable to find real location for: <frozen abc>
pydev debugger: Unable to find real location for: <__array_function__ internals>
pydev debugger: Unable to find real location for: <frozen io>
pydev debugger: Unable to find real location for: <decorator-gen-0>
pydev debugger: Unable to find real location for: <decorator-gen-1>
pydev debugger: Unable to find real location for: <decorator-gen-2>
pydev debugger: Unable to find real location for: <decorator-gen-3>
pydev debugger: Unable to find real location for: <decorator-gen-4>
pydev debugger: Unable to find real location for: <decorator-gen-5>
pydev debugger: Unable to find real location for: <decorator-gen-6>
pydev debugger: Unable to find real location for: <frozen importlib.util>
pydev debugger: Unable to find real location for: <frozen runpy>
pydev debugger: Unable to find real location for: <decorator-gen-7>
pydev debugger: Unable to find real location for: <decorator-gen-8>
pydev debugger: Unable to find real location for: <decorator-gen-9>
pydev debugger: Unable to find real location for: <decorator-gen-10>

可以做些什么来修复它?
我试着重新安装Python和Pycharm。没有什么真正的改变。

mf98qq94

mf98qq941#

因此,似乎有一个错误,在Pycharm当前版本和什么帮助我修复它是下载EAP版本2022. 3.我没有收到任何错误。

相关问题