Jupyter Notebook是基于网页的用于交互计算的应用程序。其可被应用于全过程计算:开发、文档编写、运行代码和展示结果。
参考博客:https://zhuanlan.zhihu.com/p/33105153
①编程时具有语法高亮、缩进、tab补全的功能。
② 可直接通过浏览器运行代码,同时在代码块下方展示运行结果。
③ 以富媒体格式展示计算结果。富媒体格式包括:HTML,LaTeX,PNG,SVG等。
④ 对代码编写说明文档或语句时,支持Markdown语法。
⑤ 支持使用LaTeX编写数学性说明。
安装:用Anconda安装Windows下进入终端,输入:
conda install jupyter notebook
启动:jupyter notebook
帮助文档:jupyter notebook -h
修改配置文件,设置打开jupyter notebook的默认路径:
先关闭jupyter notebook,Windows系统的配置文件路径:C:\Users
打开\jupyter_notebook_config.py
找到c.NotebookApp.notebook_dir
所在的行[我的是392行],在单引号后设置默认路径的绝对路径名,并去掉行首的#号,改后最后结果为:
这样在启动jupyter notebook,就可以出现设置的文件位置了
- 安装nbextensions
在终端输入:
pip install jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user
- 安装nbextensions
pip install jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user
以上命令要先安装pip,要是没有安装pip的话,需要安装一下:安装pip参考博客:https://zhuanlan.zhihu.com/p/38603105
- 重启jupyter,
在d出的主页面里,能看到增加了一个Nbextensions标签页,在这个页面里,勾选Hinterland即启用了代码自动补全
-
安装jupyter主题
pip install jupyterthemes
-
更新主题
pip install --upgrade jupyterthemes
-
查看可以使用的主题
jt -l
如图:
-
选择使用其中一个主题即可
jt -t <主题名>
jt -t oceans16
在终端输入jupyter notebook可以查看配置好的页面
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)