Exiting Python Debugger ipdb

后端 未结 6 1042
被撕碎了的回忆
被撕碎了的回忆 2020-12-25 11:15

I use ipdb fairly often in a way to just jump to a piece of code that is isolated i.e. it is hard to write a real script that uses it. Instead I write a minimal tes

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-25 11:37

    It's the problem with the recent version of IPython 5.1.0. You can check with your environment using the following code:

    pip freeze | egrep -i '^i'
    

    It will be resolved by downgraded to IPython==5.0.0.

    pip install ipython==5.0.0
    

    That works for me.

提交回复
热议问题