Jupyter Notebook Chinese
# Jupyter Notebook Chinese Language Settings
By default, the Jupyter Notebook interface is in English, and you can see that it supports English through the settings menu.
!(#)
We can install the official Jupyter Chinese language pack to change the Jupyter Notebook interface to Chinese without changing the browser language. The steps are as follows:
1. Open Command Prompt (Windows) or Terminal (macOS/Linux), and enter the following command to install the Chinese language pack:
pip install jupyterlab-language-pack-zh-CN
If using Python3 environment (common on macOS/Linux), then enter:
pip3 install jupyterlab-language-pack-zh-CN
2. After installation is complete, start Jupyter Notebook and enter any Notebook editing interface.
jupyter notebook
At this point, the launched interface is already in Chinese:
!(#)
3. Click on the menu bar "Settings" β select "Language" β click "Chinese (Simplified)", and the interface will be switched to Chinese in real time.
!(#)
YouTip