IPython qtconsole (v3.0.0) のカスタム バナーを設定しようとしています。私のプロファイル構成では、 を設定c.IPythonWidget.banner = u'Custom Banner'
してから起動しipython qtconsole --profile=myprof
ます。私が得るのは、通常のバナーの前に追加されたカスタム バナーです。
Custom BannerPython 2.7.5 (default, Mar 9 2014, 22:15:05)
Type "copyright", "credits" or "license" for more information.
IPython 3.0.0 -- 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.
%guiref -> A brief reference about the graphical user interface.
IPython profile: myprof
In [1]:
バナーのみを印刷するにはどうすればよいですか。
Custom Banner
IPython profile: myprof
In [1]:
ありがとう。