网海水手 2019-06-28
记录使用的一些技巧处理
局部的会话中使用
如果想在当前 ipython 会话中使用,则运行 ipython 后,依次键入下面语句即可
%load_ext autoreload %autoreload 2
全局使用
如果想为了懒省事,我希望 IPython 一直会自动重载,则需要修改
/Users/allen/.ipython/profile_default/ipython_config.py
中的配置,修改如下:
## lines of code to run at IPython startup. c.InteractiveShellApp.exec_lines = ['%autoreload 2'] ## A list of dotted module names of IPython extensions to load. c.InteractiveShellApp.extensions = ['autoreload']
如果当前用户目录下没有 .ipython
目录,则可执行以下语句创建
ipython profile create
持续更新...