如何更新jupyterlab?

时间:2019-04-20 09:36:17

标签: anaconda jupyter jupyter-lab

您如何更新jupyterlab?

我知道conda update jupyter更新了jupyter笔记本(我有Anaconda),但是我不确定这也可以解决jupyterlab的问题。

5 个答案:

答案 0 :(得分:7)

如果您更喜欢使用pip:

pip install --upgrade jupyterlab

或者,如果您想要特定的版本:

pip install jupyterlab==1.2.4

根据您的权利,您可能还需要在其中添加--user

pip install jupyterlab==1.2.4 --user

答案 1 :(得分:4)

我因尝试在Anaconda上更新Jupyterlab而失败而感到沮丧。 最终,我意识到这一行代码对我有用:

    conda update --all

enter image description here

答案 2 :(得分:1)

conda update jupyter不会自动更新jupyterlab。您必须明确要求更新jupyterlab:

conda update jupyterlab

答案 3 :(得分:1)

在使用 conda 对上述方法进行了大量反复之后,没有一种方法对我有用,可以将 nodejs 升级到 > v14.x - 以下是对我有用的解决方案,感谢以下链接:< /p>

  1. conda search nodejs # 在 conda 下搜索 nodejs 版本。
  2. conda install nodejs=14.7.0 -c conda-forge

https://www.programmersought.com/article/39027053707/

答案 4 :(得分:0)

您可能需要指定conda-forge:

conda update -c conda-forge jupyterlab