2016-12-23 20 views

回答

3

您可以創建默認配置文件的配置文件:

❯ ipython profile create default 
[ProfileCreate] Generating default config file: '/Users/alex/.ipython/profile_default/ipython_config.py' 

然後修改該文件以包括以下行:

## Set the color scheme (NoColor, Neutral, Linux, or LightBG). 
c.InteractiveShell.colors = 'linux' 

您可以瞭解這裏可用的配色方案: http://ipython.readthedocs.io/en/stable/config/details.html

相關問題