Instructions on configuring the ipython command line application are here on IPython's web site. Step-by-step instructions for configuring the font size in particular:
First, create the IPython profile. Simply running IPython or IPython's QtConsole should do this for you, but if you have to do it by hand, run
ipython profile create
Second, create an IPython config file:
- Windows -
%USERPROFILE%.ipythonprofile_defaultipython_config.py
- Linux or OS X -
~/.ipython/profile_default/ipython_config.py
Sample IPython contents:
c = get_config()
c.IPythonWidget.font_size = 11
c.IPythonWidget.font_family = 'Consolas'
There's a more detailed sample config file at ipython.org.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…