今天打开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 install --upgrade <package-name>
也就是
pip install --upgrade notebook
别漏了“–”
如何升级到指定版本?
pip install --upgrade <package-name>==<version>
这里升级到7.0.0
pip install --upgrade notebook==7.0.0
查询版本:
pip show notebook
#或者
jupyter notebook --version
发现还是老版本
于是采用官网的命令进行升级
pip install notebook
所以这是因为notebook7还没有发布??