Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
227 views
in Technique[技术] by (71.8m points)

python - Change Jupyter QtConsole settings

It is possible to make persistent changes to settings for default settings on Windows 7? I would like to change font-size and shell size.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...