pip install --user jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user
因为默认地址下载速度超慢,所以使用-i https://pypi.mirrors.ustc.edu.cn/simple
启用了一个镜像地址,
pip install --user jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
如果按照上述步骤安装成功,那么恭喜你运气不错。
有时在输入第二条指令jupyter contrib nbextension install --user
会报错
Error executing Jupyter command 'contrib': [Errno 'jupyter-contrib' not found] 2
网友对此问题第一种解决方法是更改第二条指令为:
jupyter contrib-nbextension install --user
网友对此问题第二种解决方法是更改第二条指令为conda指令(如果你用的是Anaconda的话)
conda install -c conda-forge jupyter_contrib_nbextensions
如果运气好点,问题到此就可以解决了,但是世界上最不缺的就是倒霉蛋,在解析了十几分钟后,喜提 CondaHTTPError
错误。
对错误问题进行排查
3.1.是否是conda指令网络连接不畅?
conda update conda
发现更新conda成功,并不是该问题
3.2是否是包安装失败或未安装?
pip list
发现 jupyter_contrib_nbextensions 包已经在pip的包目录中。
因为我使用的python的发行版'Anaconda',Anaconda推荐使用conda管理包,虽然也可以使用pip管理包。所以需要检查一下conda的包目录。
conda list
发现 jupyter_contrib_nbextensions 包并不在conda的包目录中
很尴尬的局面,pip说我已经安装好了,conda说我没有。但conda才是Anaconda亲儿子啊。conda说没有那就没有。
所以更改指令pip install --user jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
为`:
conda install --user jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
计算机环境:Annaconda(python3.7)、win10
安装成功使用是下面四条指令
1. conda install --user jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
2. jupyter contrib nbextension install --user
3. pip install --user jupyter_nbextensions_configurator
4. jupyter nbextensions_configurator enable --user
希望我踩过的坑对你有所帮助->->love&peace