ModuleNotFoundError: No module named ‘_pydevd_bundle_ext‘

安装包pycharm-professional-2022.3.2官网下载的包不全,字面翻译为没有模块和模块里pyobj类型二进制不兼容。

C:\Users\Administrator\AppData\Local\Programs\Python\Python38\python.exe "F:/Program Files/JetBrains/PyCharm 2022.3.2/plugins/python/helpers/pydev/pydevd.py" --multiprocess --client 127.0.0.1 --port 65230 --file E:\PycharmProjects\pythonProject\main.py 
Traceback (most recent call last):
  File "F:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_cython_wrapper.py", line 8, in 
    from _pydevd_bundle_ext import pydevd_cython as mod
ModuleNotFoundError: No module named '_pydevd_bundle_ext'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "F:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_cython_wrapper.py", line 11, in 
    from _pydevd_bundle import pydevd_cython as mod
ImportError: cannot import name 'pydevd_cython' from '_pydevd_bundle' (F:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\__init__.py)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "F:/Program Files/JetBrains/PyCharm 2022.3.2/plugins/python/helpers/pydev/pydevd.py", line 55, in 
    from _pydevd_bundle.pydevd_trace_dispatch import (
  File "F:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_trace_dispatch.py", line 60, in 
    from _pydevd_bundle.pydevd_cython_wrapper import trace_dispatch as _trace_dispatch, global_cache_skips, global_cache_frame_skips, fix_top_level_trace_and_get_trace_func
  File "F:\Program Files\JetBrains\PyCharm 2022.3.2\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_cython_wrapper.py", line 35, in 
    mod = getattr(__import__(check_name), mod_name)
  File "_pydevd_bundle\pydevd_cython_win32_38_64.pyx", line 1, in init _pydevd_bundle.pydevd_cython_win32_38_64
ValueError: builtins.type size changed, may indicate binary incompatibility. Expected 880 from C header, got 864 from PyObject

Process finished with exit code 1

你可能感兴趣的:(bug)