pip升级notebook

今天打开jupyter发现有一个提示
![(https://img-blog.csdnimg.cn/8d0cc87fc3414b20822fc526d2fcd656.png)
在这里插入图片描述
Read the migration plan to Notebook 7 to learn about the new features and the actions to take if you are using extensions - Please note that updating to Notebook 7 might break some of your extensions.
翻译:
阅读笔记本7的迁移计划,了解新功能以及在使用扩展时要采取的操作-请注意,更新到笔记本7可能会破坏某些扩展。

查看已安装的notebook版本
pip升级notebook_第1张图片
如何升级?

pip install --upgrade <package-name>

也就是

pip install --upgrade  notebook

别漏了“–”
pip升级notebook_第2张图片

如何升级到指定版本?

pip install --upgrade <package-name>==<version>

这里升级到7.0.0

pip install --upgrade notebook==7.0.0

查询版本:

pip show notebook
#或者
jupyter notebook --version

pip升级notebook_第3张图片
发现还是老版本
于是采用官网的命令进行升级

pip install notebook

pip升级notebook_第4张图片
所以这是因为notebook7还没有发布??

你可能感兴趣的:(Python学习私人笔记,pip,python,jupyter)