每当我进入ipython
模式,ipython就会通过此消息欢迎我,
WARNING: Attempting to work in a virtualenv. If you encounter
problems, please install IPython inside the virtualenv.
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
Type "copyright", "credits" or "license" for more information.
IPython 1.2.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
问候人们一切都很好,但它占据了我的大部分外壳屏幕,并且让我clean
删除它们。
如何通过配置文件禁用此欢迎消息?
答案 0 :(得分:5)
您可以使用
ipython --no-banner
或在配置文件中设置
c.TerminalIPythonApp.display_banner = False
答案 1 :(得分:2)
只需使用:
ipython console
如果这就是你想要的,你会明白的。
答案 2 :(得分:1)
编辑您的配置文件并添加
c.TerminalIPythonApp.display_banner = False
默认配置文件的配置文件位于/home/<user>/.ipython/profile_default/ipython_config.py
有关IPython配置的文档可以在here
中找到
创建新的配置文件(如果不存在),或使用
ipython locate profile
查看当前的个人资料位置。