jupyter notebook不能显示中文文件
时间: 2023-12-03 21:05:01 浏览: 544
Jupyter Notebook 实现正常显示中文和负号
解决jupyter notebook不能显示中文文件的问题,可以按照以下两种方法进行操作:
1. 修改jupyter notebook配置文件
在终端中输入以下命令打开jupyter notebook配置文件:
```shell
jupyter notebook --generate-config
```
找到并修改配置文件中的以下两行代码:
```shell
#c.NotebookApp.locale = 'en_US'
#c.UTF8Encoding = False
```
将其修改为:
```shell
c.NotebookApp.locale = 'zh_CN.UTF-8'
c.UTF8Encoding = True
```
保存并退出配置文件,重新启动jupyter notebook即可。
2. 安装中文字体
在终端中输入以下命令安装中文字体:
```shell
sudo apt-get install fonts-wqy-zenhei
```
安装完成后,重新启动jupyter notebook即可。
阅读全文