Created
December 2, 2018 06:28
-
-
Save zombie110year/d71e9add5b2da1cf0a3f629ed4d05bea to your computer and use it in GitHub Desktop.
Jupyter 与 Ipython 的设置项
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 配置文件优先级 | |
| # ./matplotlibrc | |
| # ~/.config/matplotlib/matplotlibrc | |
| # $PYTHONENV/Lib/site-packages/matplotlib/mpl-data/matplotlibrc | |
| font.family: Inziu Iosevka SC | |
| # 推荐使用 Inziu 系列字体 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| c.InteractiveShellApp.matplotlib = 'inline' # 自动显示图片 | |
| c.InlineBackend.figure_formats = ['svg'] # 生成 SVG 矢量图 | |
| c.InteractiveShell.ast_node_interactivity = 'all' # 显示所有返回值 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| c.NotebookApp.open_browser = False # 不默认打开浏览器 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment