怎么在jupyter中安装中文字体,如微软雅黑、宋体等。
时间: 2024-05-16 10:17:55 浏览: 603
kivy中文支持全局替换微软雅黑替换字体.rar
5星 · 资源好评率100%
在 Jupyter 中安装中文字体需要先安装字体文件,然后配置 matplotlib 库来使用这些字体。以下是具体步骤:
1. 下载所需的字体文件(如微软雅黑、宋体等),并将它们放在一个文件夹中。可以在网上搜索并下载所需字体文件。
2. 在 Jupyter 中运行以下代码,查找 matplotlib 的配置文件路径:
```python
import matplotlib
print(matplotlib.matplotlib_fname())
```
输出类似于以下内容:
```
/Users/username/anaconda3/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc
```
3. 打开 matplotlib 的配置文件 matplotlibrc,找到以下代码块:
```
# font.family : sans-serif
# font.style : normal
# font.variant : normal
# font.weight : medium
# font.stretch : normal
# font.size : 10.0
```
4. 在 `font.family` 后面添加所需的中文字体名称,多个字体以逗号分隔。例如:
```
font.family : sans-serif, 微软雅黑
```
5. 将字体文件的路径添加到 matplotlib 的字体路径列表中。在 matplotlibrc 中找到以下代码块:
```
# font.serif : DejaVu Serif, Bitstream Vera Serif, Computer Modern Roman, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif
# font.sans-serif : DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
# font.cursive : Apple Chancery, Textile, Zapf Chancery, Sand, Script MT, Felipa, cursive
# font.fantasy : Comic Sans MS, Chicago, Charcoal, Impact, Western, Humor Sans, xkcd, fantasy
```
在 `font.sans-serif` 后面添加字体文件路径,多个路径以逗号分隔。例如:
```
font.sans-serif : Arial, STHeiti, Microsoft YaHei, SimHei, WenQuanYi Micro Hei, 'Droid Sans Fallback'
```
其中的路径需要根据实际字体文件路径来进行修改。
6. 保存 matplotlibrc 文件后,重启 Jupyter Notebook。在需要使用中文字体的代码中,将字体名称作为参数传入,例如:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'Microsoft YaHei'
```
这样就可以使用微软雅黑字体了。
阅读全文