如何在iPython 5中使颜色可读?

时间:2016-12-23 03:51:19

标签: ipython

我刚刚升级到iPython 5,所有颜色都很难用黑色终端背景阅读。有没有办法调整这些?

1 个答案:

答案 0 :(得分:4)

您可以为默认配置文件创建配置文件:

❯ 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