debug
ipython xxxxx.py --pdb
会获取出错地方的上下文
加载外部代码
%load
%load bi_user_bill.py
比如使用ipython manage shell 后,不用在粘贴复制,
可以加载进来
使用vim编辑模式
alias ipython3='ipython3 --TerminalInteractiveShell.editing_mode=vi'
自动重载
在配置文件是~/.config/ipython/profile_default/ipython_config.py添加
c.InteractiveShellApp.exec_lines.append('%load_ext autoreload')
c.InteractiveShellApp.exec_lines.append('%autoreload 2')
网友评论