ipython - 禁用欢迎消息

7 ipython

每次我进入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.
Run Code Online (Sandbox Code Playgroud)

问候人们都很好,但它占据了我的大部分外壳屏幕,而我却clean想要删除它们.

如何通过配置文件禁用此欢迎消息?

小智 5

您可以使用

ipython --no-banner
Run Code Online (Sandbox Code Playgroud)

或在配置文件中设置

c.TerminalIPythonApp.display_banner = False
Run Code Online (Sandbox Code Playgroud)


sky*_*489 2

只需使用:

ipython console
Run Code Online (Sandbox Code Playgroud)

如果那是你想要的,你就会得到它。