Jupyter Notebook 设置背景主题、代码自动补全
程序员文章站
2022-05-29 09:05:26
...
步骤
# Jupyter Notebook 设置黑色背景主题、字体大小、代码自动补全
https://blog.csdn.net/weixin_30776863/article/details/96610572
1.安装主题包:在jupyter直接运行以下命令;
!pip install jupyterthemes
1.1更新主题包:在jupyter直接运行以下命令;
!pip install --upgrade jupyterthemes
1.2查看所有主题:在jupyter直接运行以下命令;
!jt -l
有以下主题可选:
Available Themes:
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
1.3设置主题,更改grade3 即可:在jupyter直接运行以下命令;
!jt -t grade3 -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -N
2. root用户进入cmd命令行安装插件:
!pip install jupyter_nbextensions_configurator -i https://pypi.douban.com/simple
!pip install jupyter_contrib_nbextensions -i https://pypi.douban.com/simple
2.1在cmd命令设置:
#这里直接设置,不用去安装
jupyter contrib nbextension install --user
jupyter nbextensions_configurator enable --user
推荐阅读
-
【Python】Jupyter Notebook 设置黑色背景主题、字体大小、代码自动补全
-
Jupyter Notebook添加代码自动补全功能的实现
-
conda jupyter notebook 代码自动补全 (Mac) (Windows应该也行)
-
jupyter notebook python代码自动补全
-
Jupyter Notebook 设置背景主题、代码自动补全
-
jupyter notebook更换主题配色及自动补全(转载)
-
jupyter notebook入门——自动补全代码
-
【数据挖掘】jupyter notebook 代码提示及自动补全
-
优化你的jupyter notebook使用体验--自动补全+主题设置
-
使用jupyter notebook 实现自动代码补全