1、需要的安装jupyterthemes主题包。大多数码友从GitHub上找到主题包。
jupyterthemes 的 github地址如下: https://github.com/dunovank/jupyter-themes
使用命令 pip install jupyterthems
也有不能正确安装的,可能是选取的Python源不合适,可以尝试豆瓣的地址。
pip install -i https://pypi.doubanio.com/simple/ jupyterthemes
2、我就是从豆瓣安装的。但是我的pip版本好像不是最新的。
C:\Users\Administrator>pip install -i https://pypi.doubanio.com/simple/ jupyterthemes
Looking in indexes: https://pypi.doubanio.com/simple/
Collecting jupyterthemes
Downloading https://pypi.doubanio.com/packages/8a/08/9dee6dfd7f2aad6c30282d55c8f495b4dc1e4747b4e2
bdbeb80572ddf312/jupyterthemes-0.20.0-py2.py3-none-any.whl (7.0MB)
Installing collected packages: lesscpy, jupyterthemes
Successfully installed jupyterthemes-0.20.0 lesscpy-0.13.0
You are using pip version 10.0.1, however version 19.2.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\Administrator>jt -l 查看主题的内容。
Available Themes:
chesterish
grade3
gruvboxd
gruvboxl
monokai
oceans16
onedork
solarizedd
solarizedl
3、关于设置主题的命令:
jt -t 主题名称 #可以设置你想要的名称。
jt -r #恢复到原来的主题界面。
下面是设置主题的样式命令:jt -t monokai -f roboto -nf robotosans -tf robotosans -N -T -cellw 70% -dfs 10 -ofs 10
-t 是设置主题, -f 设置代码的字体, -nf 设置notebook的字体,等等。感兴趣的话可以自己多设置几次,看看效果
4、升级pip的命令
python -m pip install --upgrade pip
5、临时指定Python库地址的命令 -i https://pypi.doubanio.com/simple/
例如:pip install -i https://pypi.doubanio.com/simple/ jupyterthemes
在下面第六条就可以试着指定Python库的源,我安装时都是用到豆瓣的库
6、让 jupyter notebook 实现自动代码补全,首先安装nbextensions
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
然后安装nbextensions_configurator
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
如果提示缺少依赖,就使用pip安装对应依赖即可。
最后重启jupyter,在弹出的主页面里,能看到增加了一个Nbextensions标签页,在这个页面里,勾选Hinterland即启用了代码自动补全,如图所示:
安装完成后,勾选 “Table of Contents” 以及 “Hinterland”。
其中 Hinterland 是用来自动补全代码的,这个拓展的代码补全功能虽然没有 PyCharm中的那么全面,但比没有是要好多了。
设置如下:
自动补全代码的效果如下:
关于 Jupyter Notebook,如果你有一些好的使用技巧,不妨跟大家一起分享下。