linux下jupyter notebook汉化
时间: 2023-05-25 13:04:41 浏览: 395
Jupyter Notebook for linux
1. 安装jupyter notebook
首先需要先安装jupyter notebook,可以使用以下命令进行安装:
```
pip install jupyter
```
2. 安装中文化支持
安装中文化支持可以使用以下命令:
```
pip install jupyterthemes
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter_contrib_nbextensions
```
3. 中文化
在安装好中文化支持之后,使用以下命令将jupyter notebook中的界面都变成中文:
```
jt -t onedork -f roboto -fs 10 -altp -tfs 11 -nfs 10 -cellw 88% -T
```
4. 启用插件
启用插件需要使用以下命令:
```
jupyter contrib nbextension install --user --skip-running-check
```
5. 启用中文化插件
首先需要开启配置文件,使用以下命令:
```
jupyter notebook --generate-config
```
打开配置文件,找到以下两行:
```
#c.NotebookApp.notebook_dir = ''
#c.NotebookApp.iopub_data_rate_limit = 1000000
```
在这两行的下面添加以下代码:
```
c.NotebookApp.browser='chromium-browser'
c.NotebookApp.locale='en_US.UTF-8'
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.allow_origin = '*'
c.NotebookApp.allow_remote_access = True
c.NotebookApp.token=''
c.NotebookApp.password='sha1:649e988cd389:281c2511997f16219110c0d4a4c4d4cf40ca70c9'
c.NotebookApp.ip = '*'
c.NotebookApp.port = 8888
c.NotebookApp.enable_mathjax = True
c.NotebookApp.extra_static_paths = ['/home/.local/lib/python3.7/site-packages']
c.NotebookApp.tornado_settings = {"cookie_secret": b""}
c.NotebookApp.iopub_data_rate_limit=10000000
c.NotebookApp.iopub_msg_rate_limit=1000000
c.NotebookApp.trust_xheaders=True
c.NotebookApp.disable_check_xsrf=False
```
6. 重启jupyter notebook
使用以下命令重启jupyter notebook:
```
jupyter notebook
```
重启之后就可以看到jupyter notebook已经被中文化了。
阅读全文