我是靠谱客的博主 糊涂马里奥,最近开发中收集的这篇文章主要介绍Jupyter notebook 扩展插件安装进入虚拟环境安装并激活 jupyter_contrib_nbextensions常用插件介绍,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • 进入虚拟环境
  • 安装并激活 jupyter_contrib_nbextensions
    • 方案一 pip安装
    • 方案二 conda安装
  • 常用插件介绍
    • Table of Contents :自动生成目录
    • Variable Inspector :查看变量
    • ExcecuteTime: 查看代码执行时间
    • 其他插件

进入虚拟环境

运行Anaconda Powershell Prompt或Anaconda Prompt

安装并激活 jupyter_contrib_nbextensions

方案一 pip安装

pip install -i https://mirrors.aliyun.com/pypi/simple flask
pip install jupyter_contrib_nbextensions 
jupyter contrib nbextension install --user
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user

方案二 conda安装

conda install -c conda-forge jupyter_contrib_nbextensionsconda install -c
conda-forge jupyter_nbextensions_configurator

安装完成以后,打开 jupyter notebook 可以看到菜单栏多了 :Nbextensions 一栏,这样就可以安装插件了。

常用插件介绍

Table of Contents :自动生成目录

如果在 jupyter notebook 中使用了markdown对程序进行了解释和说明的话,那么安装这个插件以后,会自动在大纲视图。

Variable Inspector :查看变量

类似于 Matlab 和 R studio 的工作空间,可以查看变量名、类型,大小,形状和值。其中变量的 shape (形状)这个参数在进行矩阵运算时,十分实用,并且这个窗口还可以调节大小,排序等功能。

ExcecuteTime: 查看代码执行时间

这个插件会代码模块最后计算该模块的计算时间和运行结束时间,美观实用。

其他插件

Codefolding: 代码折叠

Autopep8: 自动代码格式优化

AutoSaveTime: 控制脚本的自动保存时间

Hide Input All: 隐藏所有的代码单元,保持所有的输出和 markdown 单元可见

Spellchecker: 对 markdown 单元中的内容进行拼写检查

最后

以上就是糊涂马里奥为你收集整理的Jupyter notebook 扩展插件安装进入虚拟环境安装并激活 jupyter_contrib_nbextensions常用插件介绍的全部内容,希望文章能够帮你解决Jupyter notebook 扩展插件安装进入虚拟环境安装并激活 jupyter_contrib_nbextensions常用插件介绍所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部