PyCharm debugger failing to start - ironpython console
Hello!
I've just set up another instance (on my notebook) of a project that I already run without issues on PyCharm, but this time I'm having issues with the debugger:
project742 | Traceback (most recent call last):
project742 | File "/opt/.pycharm_helpers/pydev/_pydevd_bundle/pydevd_console_integration.py", line 4, in <module>
project742 | from code import InteractiveConsole, InteractiveInterpreter
project742 | ImportError: cannot import name 'InteractiveConsole'
project742 |
project742 | During handling of the above exception, another exception occurred:
project742 |
project742 | Traceback (most recent call last):
project742 | File "/opt/.pycharm_helpers/pydev/pydevd.py", line 45, in <module>
project742 | from _pydevd_bundle.pydevd_comm import CMD_SET_BREAK, CMD_SET_NEXT_STATEMENT, CMD_STEP_INTO, CMD_STEP_OVER, \
project742 | File "/opt/.pycharm_helpers/pydev/_pydevd_bundle/pydevd_comm.py", line 91, in <module>
project742 | from _pydevd_bundle import pydevd_console_integration
project742 | File "/opt/.pycharm_helpers/pydev/_pydevd_bundle/pydevd_console_integration.py", line 6, in <module>
project742 | from _pydevd_bundle.pydevconsole_code_for_ironpython import IronPythonInteractiveConsole as InteractiveConsole, \
project742 | File "/opt/.pycharm_helpers/pydev/_pydevd_bundle/pydevconsole_code_for_ironpython.py", line 305
project742 | exec code in self.locals
project742 | ^
project742 | SyntaxError: Missing parentheses in call to 'exec'
docker_project742 exited with code 1
The project runs on a docker-compose python interpreter, version 3.6.9
I've tried pycharm versions 2022.1.3, 2021.3.3 and 2021.2.4
Docker Desktop 4.10.1 (82475) is currently the newest version available.
Any help is appreciated
请先登录再写评论。