jupyter 中文乱码
时间: 2023-12-15 15:33:29 浏览: 167
hibernate_中文乱码
为了解决jupyter中文乱码问题,可以按照以下步骤进行设置:
1. 打开jupyter notebook,在新建notebook页面右上角点击“New”按钮,选择“Text File”新建一个文本文件。
2. 在新建的文本文件中输入以下代码并运行:
```python
!pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple
```
3. 安装完成后,在新建的文本文件中输入以下代码并运行:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] #设置中文显示
plt.rcParams['axes.unicode_minus']=False #解决负号'-'显示为方块的问题
```
4. 运行以上代码后,即可在jupyter中正常显示中文。
阅读全文