jupyter qtconsole
- Windows Python3.6 安装 IPython(Jupyter) qtconsole
https://blog.csdn.net/wohu1104/article/details/104475909
直接使用命令安装:
pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
安装 qtconsole
python –m pip install qtconsole
https://www.zhihu.com/question/51467397/answer/1098115714
jupyter qtconsole
%paste 直接执行
%load 从.py加载文件
%run -d .py断在第一行 直接开启调试
%pdb on ,可以在assert (fail)时候 定位stack ,u Up, d Down
In (%hist)是一个列表 历史命令
cell 为执行单位
自动补全单词