pip命令降级Jupyter Notebook

3
我使用python -m pip install jupyter安装了jupyter笔记本,使用pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install安装了nbextensions扩展。目前我的jupyter-notebook版本为6.1.6,这使得nbextensions显示为空白选项卡,如thread所述。然而,解决方法是将笔记本降级到6.1.5版本。如何使用pip进行降级呢?
2个回答

4

pip install notebook==6.1.5会使jupyter notebook降级


0

你可以指定一个版本号:

pip install jupyter-notebook==6.1.5

尝试过了,但不起作用。错误:无法找到满足要求 jupyter-notebook==6.1.5 的版本。错误:未找到符合要求的分发版本 jupyter-notebook==6.1.5。 - undefined

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接