您如何更新jupyterlab?
我知道conda update jupyter
更新了jupyter笔记本(我有Anaconda),但是我不确定这也可以解决jupyterlab的问题。
答案 0 :(得分:7)
如果您更喜欢使用pip:
pip install --upgrade jupyterlab
或者,如果您想要特定的版本:
pip install jupyterlab==1.2.4
根据您的权利,您可能还需要在其中添加--user
:
pip install jupyterlab==1.2.4 --user
答案 1 :(得分:4)
答案 2 :(得分:1)
conda update jupyter
不会自动更新jupyterlab。您必须明确要求更新jupyterlab:
conda update jupyterlab
答案 3 :(得分:1)
在使用 conda 对上述方法进行了大量反复之后,没有一种方法对我有用,可以将 nodejs 升级到 > v14.x - 以下是对我有用的解决方案,感谢以下链接:< /p>
答案 4 :(得分:0)
您可能需要指定conda-forge:
conda update -c conda-forge jupyterlab