ubuntu中jupyter notebook汉化
时间: 2023-05-25 10:03:37 浏览: 325
1. 安装jupyter notebook:
在终端中运行以下命令安装jupyter notebook:
```
sudo apt-get update
sudo apt-get install jupyter-notebook
```
2. 安装中文支持:
在终端中运行以下命令安装中文支持:
```
sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4
```
然后重启电脑。
3. 安装jupyter notebook的中文支持:
在终端中运行以下命令安装jupyter notebook的中文支持:
```
sudo pip3 install jupyter
sudo pip3 install jupyter_contrib_nbextensions
sudo jupyter contrib nbextension install --user
sudo jupyter nbextension enable code_prettify/code_prettify
sudo jupyter nbextension enable execute_time/ExecuteTime
sudo jupyter nbextension enable spellchecker/main
sudo jupyter nbextension enable notify/notify
sudo jupyter nbextension enable toc2/main
sudo jupyter nbextension enable freeze/main
sudo jupyter nbextension enable varInspector/main
sudo jupyter nbextension enable hide_input_all/hide_input_all
```
4. 启动jupyter notebook:
在终端中运行以下命令启动jupyter notebook:
```
jupyter notebook
```
或者在应用程序中找到jupyter notebook,双击启动。
5. 修改jupyter notebook的配置文件:
在终端中运行以下命令打开jupyter notebook的配置文件:
```
jupyter notebook --generate-config
```
然后使用Vi编辑器编辑配置文件:
```
vi .jupyter/jupyter_notebook_config.py
```
添加以下代码:
```
c.NotebookApp.locale = 'zh-CN'
c.IPKernelApp.pylab = 'inline' # in-line figure when using Matplotlib
c.NotebookApp.open_browser = False # 不启动浏览器
```
保存文件并退出Vi编辑器。
6. 重新启动jupyter notebook:
在终端中运行以下命令重新启动jupyter notebook:
```
jupyter notebook
```
现在你应该可以在jupyter notebook中看到中文界面了。
阅读全文