设置iPython默认配置文件

时间:2015-01-31 16:30:59

标签: ipython

在安装IPython之后,我创建了一个默认配置文件,其中包含:

$ ipython profile create

然后,我创建了另一个,这次我给它起了名字测试

$ ipython profile create testing

我已经根据自己的喜好定制了这个测试配置文件(提示符和自动重载扩展等),现在我希望它是我的默认配置文件,所以当我输入时它会启动:< / p>

$ ipython

我知道我可以用以下方式开始:

$ ipython --profile=testing

但这是很多打字。

我已尝试修改ipython_config.py文件夹中的文件profile_default第89行

# The IPython profile to use.
c.TerminalIPythonApp.profile = 'testing'

但它不起作用。有什么想法吗?它坏了吗?

编辑:由于我必须在几周或四个星期的时间段内使用不同的配置文件,我正在寻找一种方法来为这些时间段选择默认配置文件。从 IPython 本身实现这一目标真是太棒了,与此同时,一个非常方便的解决方法是在bash配置中添加一个别名(正如其中一个中的 cel 所指出的那样)注释):

alias ipython='ipython --profile=testing'

1 个答案:

答案 0 :(得分:1)

备份profile_default,然后将profile_testing重命名为profile_default

或者您可以将profile_testing的内容复制到profile_default