python simhei
时间: 2023-06-21 20:12:07 浏览: 984
SimHei.ttf
5星 · 资源好评率100%
"simhei" 是一种中文字体,您需要安装相关字体库才能在 Python 中使用它。可以使用以下代码安装 simhei 字体库:
```
!wget https://github.com/adobe-fonts/source-han-sans/raw/release/SubsetOTF/SourceHanSansSC.zip
!unzip SourceHanSansSC.zip -d /usr/share/fonts/SourceHanSansSC
!rm SourceHanSansSC.zip
!fc-cache -fv
```
安装完毕后,您就可以在 Python 中使用 simhei 字体了。例如:
```
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['SimHei'] # 设置图形中的字体为 simhei
plt.plot([1, 2, 3], [4, 5, 6])
plt.show()
```
阅读全文