问题描述
pycharm 在debug时出现了如下bug
-------------------------------------------------------------------------------
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
-------------------------------------------------------------------------------
已连接到 pydev 调试器(内部版本号 222.4345.23)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>
虽然不影响运行,但是看着很难受,这个bug网上有一些人通过升级pycharm成功解决,但是我不想升级,这里提供一个治标不治本的方法。
解决方案
编辑解释器运行配置
在解释器选项中添加参数 -Xfrozen_modules=off
版本信息
软件 | 版本 |
---|---|
python | 3.11.2 |
pycharm | PyCharm 2022.2.3 (Professional Edition) |