IPython 使用記錄

kycool發表於2019-02-16

記錄使用的一些技巧處理

1 自動過載修改的檔案

區域性的會話中使用

如果想在當前 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


持續更新…

相關文章