无法在 Ubuntu 16.04 上将 Jupyter 更新到最新版本

无法在 Ubuntu 16.04 上将 Jupyter 更新到最新版本

我使用 Python 3.5 和 Python 2.7 的 Jupyter 笔记本。但是,我无法更新 Jupyter:

vladimir@vladimir-ubuntu:~$ jupyter --version
4.2.0

pip3 freeze给了我以下

vladimir@vladimir-ubuntu:~$ pip3 freeze
ipykernel==4.6.1
ipython==6.0.0
ipython-genutils==0.2.0
jupyter==1.0.0
jupyter-client==5.0.1
jupyter-console==5.1.0
jupyter-contrib-core==0.3.0
jupyter-contrib-nbextensions==0.2.6
jupyter-core==4.3.0
jupyter-highlight-selected-word==0.0.11
jupyter-latex-envs==1.3.8.4

请注意,jupyter 和 ipython 似乎都已更新。

我还以为 Ubuntu 是$jupyter从 python2.7 运行的,我也更新了它。因此,我已经更新了jupyter两个 Python(尽管和的新版本iPythonJupyter应该在 python2.7 上运行),但这并不能解决问题。


更新型多巴胺:关于 Jupyter 如下所示:关于 Jupyter

UPD2:我使用 pip(而不是 conda)。

UPD3[sudo] pip3 install jupyter以及[sudo] pip install jupyter给我一份‘要求已满足’的清单。

答案1

您使用 Anaconda 吗?如果是,请尝试以下命令并将结果发回给我们:

conda update jupyter

还要检查以下命令(如有必要):

pip install -U jupyter

相关内容