美文网首页
ipython配置

ipython配置

作者: 樊海鹏 | 来源:发表于2018-05-05 20:17 被阅读0次

    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')

    相关文章

      网友评论

          本文标题:ipython配置

          本文链接:https://www.haomeiwen.com/subject/gfverftx.html