热线电话:13121318867

登录
2022-06-22 阅读量: 5135
给jupyter安装目录插件时报错:Jupyter command `jupyter-contrib-nbextension` not found.

问题: 给jupyter安装目录插件时报错:Jupyter command `jupyter-contrib-nbextension` not found.
或者23年7月版Anaconda安装包报错 Jupyter command `jupyter-contrib not found.


方案一:


1,先卸载:
分别用cmd命令,卸载之前的安装
pip uninstall jupyter_contrib_nbextensions

pip uninstall jupyter_nbextensions_configurator

2.重新下载并安装:
2.1 先cmd命令安装
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com jupyter_contrib_nbextensions

2.2 然后cmd命令进入目录:
cd C:\Users\Vcitor\Python\Python38\Lib\site-packages\jupyter_contrib_nbextensions

2.2.1 这个目录要换成你的本地电脑的对应路径目录: cd+你的对应目录

2.2.2 进入的这个目录是第2步时jupyter_contrib_nbextensions安装在你电脑上的位置, 可以采用在电脑上检索"jupyter_contrib_nbextensions"的方式查找这个位置。
2.2.3 这个jupyter_contrib_nbextensions的位置可以用python代码找 ,代码如下
import site

import jupyter_contrib_nbextensions

print(jupyter_contrib_nbextensions.__file__)

2.3 然后执行下面命令手动安装
python application.py install

2.4 然后exit 重新返回原来的cmd默认命令位置, 输入以下命令安装
jupyter contrib nbextension install --user

这时就不会提示“Jupyter command jupyter-contrib not found.”这个问题了

3, 接下来继续安装
3.1: pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com jupyter_nbextensions_configurator

3.2 : jupyter nbextensions_configurator enable --user


这时重新启动jupyter notebook 就成功看到Nbextensions显示在工具栏了


方案二:

1,先卸载:
分别用cmd命令,卸载之前的安装
pip uninstall jupyter_contrib_nbextensions

pip uninstall jupyter_nbextensions_configurator

2.重新下载并安装,指定最新版本的上一个版本号下载安装

pip install jupyter contrib nbextension==0.5.0



学习更多数据分析知识欢迎访问 https://www.cda.cn/member.html?utm_source=weitao



381.6073
0
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子