Windows下jupyter notebook配置和使用

Windows下jupyter notebook配置和使用,第1张

简介

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\jupyter_notebook_config.py,.号开头的文件都是隐藏文件,需要选则显示隐藏文件
打开\jupyter_notebook_config.py
找到c.NotebookApp.notebook_dir所在的行[我的是392行],在单引号后设置默认路径的绝对路径名,并去掉行首的#号,改后最后结果为:

这样在启动jupyter notebook,就可以出现设置的文件位置了

配置代码补齐功能
  1. 安装nbextensions
    在终端输入:
pip install jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user
  1. 安装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

  1. 重启jupyter,
    在d出的主页面里,能看到增加了一个Nbextensions标签页,在这个页面里,勾选Hinterland即启用了代码自动补全


设置主题颜色
  1. 安装jupyter主题
    pip install jupyterthemes

  2. 更新主题
    pip install --upgrade jupyterthemes

  3. 查看可以使用的主题
    jt -l
    如图:

  4. 选择使用其中一个主题即可
    jt -t <主题名>
    jt -t oceans16
    在终端输入jupyter notebook可以查看配置好的页面

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/714808.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-24
下一篇 2022-04-24

发表评论

登录后才能评论

评论列表(0条)

保存