pip 命令降级 jupyter notebook
pip command to downgrade jupyter notebook
我使用 python -m pip install jupyter
使用 pip 安装了 jupyter notebook,使用 pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install
安装了 nbextensions
我当前的 jupyter-notebook
版本是 6.1.6,这使得 nbextensions 根据 thread 显示空白标签。不过解决方法是将notebook降级到6.1.5版本。
我如何使用 pip 做到这一点?
您可以指定一个版本号:
pip install jupyter-notebook==6.1.5
pip install notebook==6.1.5
会降级 jupyter notebook
我使用 python -m pip install jupyter
使用 pip 安装了 jupyter notebook,使用 pip install jupyter_contrib_nbextensions && jupyter contrib nbextension install
我当前的 jupyter-notebook
版本是 6.1.6,这使得 nbextensions 根据 thread 显示空白标签。不过解决方法是将notebook降级到6.1.5版本。
我如何使用 pip 做到这一点?
您可以指定一个版本号:
pip install jupyter-notebook==6.1.5
pip install notebook==6.1.5
会降级 jupyter notebook