gpt4 book ai didi

python - iPython - 改变双下划线(魔术)属性的颜色?

转载 作者:行者123 更新时间:2023-11-28 16:59:32 32 4
gpt4 key购买 nike

我将 iPython 更新为:

Python 3.6.7 (default, Mar 29 2019, 10:38:28) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.4.0 -- An enhanced Interactive Python. Type '?' for help.

我注意到像 __name__ 这样的双下划线属性有深蓝色。我的终端是黑色的,所以那些属性非常黑而且很难看清(看看 A.__name__):

enter image description here

有没有办法在 iPython 上修改颜色?..

我发现了这个问题,但似乎在 7.4.0 iPython 中,给出的答案不再有效。

How do I customize text color in IPython?

最佳答案

查看您的安装目录,您会发现一个名为 ipython_config.py 的文件。要安装此文件,只需使用以下命令:

ipython profile create

否则找到此文件并将其复制到您的 ~/.ipython/profile_default/ 目录中。

在编辑它之前,用以下方法备份这个文件:

cp ~/.ipython/profile_default/ipython_config.py \   
~/.ipython/profile_default/ipython_config.py_backup

使用您选择的编辑器打开此文件,搜索以下设置并将其注释掉(删除“#”):

#c.TerminalInteractiveShell.highlighting_style_overrides = {}

你必须在那里有下一个代码:

## Override highlighting format for specific tokens

from pygments.token import Name
c.TerminalInteractiveShell.highlighting_style_overrides = {
Name.Variable: "#FF00FF"
}

enter image description here

关于python - iPython - 改变双下划线(魔术)属性的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55413678/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com