jupyter notebook字体样式mac
时间: 2023-10-23 09:14:06 浏览: 181
jupyter notebook安装.docx
在Mac上修改Jupyter Notebook的字体样式可以按照以下步骤进行:
1. 打开终端,输入以下命令安装jupyterthemes:
```
pip install jupyterthemes
```
2. 选择自己喜欢的主题,例如我选择的是chesterish:
```
jt -t chesterish
```
3. 修改字体样式,例如我将字体修改为Fira Code:
```
jt -t chesterish -f fira
```
4. 重新打开Jupyter Notebook即可看到修改后的效果。
阅读全文