Reputation: 319
I am getting the following error whenever I try to debug any code. Running the code works fine though. I have tried few suggestions from the forums, with no luck.
Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\pydevd.py", line 39, in <module>
from _pydevd_bundle.pydevd_comm import CMD_SET_BREAK, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO, CMD_STEP_OVER, \
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\_pydevd_bundle\pydevd_comm.py", line 96, in <module>
from _pydevd_bundle import pydevd_bytecode_utils
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\_pydevd_bundle\pydevd_bytecode_utils.py", line 105, in <module>
_unpack_opargs = dis._unpack_opargs
AttributeError: module 'dis' has no attribute '_unpack_opargs'
Upvotes: 0
Views: 327
Reputation: 81624
Python 3.5 has reached EOL. As such, PyCharm 20.1 (and newer, most likely) apparently does not fully support it. See PyCharm issue PY-41642.
Edit: Actually, it appears that PyCharm 20.1.1 included the fix for it, so actually try a newer version first (ctrlf the page for PY-41642).
You have 3 options (ordered from best to worst):
Upvotes: 1