在 Spyder 中设置断点不起作用
Setting Breaktpoints in Spyder doesn't work
我是 Python 和 Spyder 的新手。我使用 Python 3.5 和 Spyder 2.3.8。我想调试我的代码并设置断点。然后在Internal console出现这个错误:
Traceback (most recent call last):
File "C:\Anaconda3\lib\site-packages\spyderlib\plugins\externalconsole.py", line 713, in set_spyder_breakpoints
shellwidget.shell.set_spyder_breakpoints()
AttributeError: 'TerminalWidget' object has no attribute 'set_spyder_breakpoints'
当我 运行 代码时,断点被忽略。
任何想法如何解决这个问题?
谢谢!
当我想要考虑断点时,我经常忘记启动我的代码:
通过 Ctrl + F5 图标(蓝色箭头 + 双栏),
而不是通常的 F5(绿色箭头)。
我是 Python 和 Spyder 的新手。我使用 Python 3.5 和 Spyder 2.3.8。我想调试我的代码并设置断点。然后在Internal console出现这个错误:
Traceback (most recent call last):
File "C:\Anaconda3\lib\site-packages\spyderlib\plugins\externalconsole.py", line 713, in set_spyder_breakpoints
shellwidget.shell.set_spyder_breakpoints()
AttributeError: 'TerminalWidget' object has no attribute 'set_spyder_breakpoints'
当我 运行 代码时,断点被忽略。 任何想法如何解决这个问题? 谢谢!
当我想要考虑断点时,我经常忘记启动我的代码:
通过 Ctrl + F5 图标(蓝色箭头 + 双栏),
而不是通常的 F5(绿色箭头)。