How to update jupyterlab using conda or pip?

后端 未结 4 412
挽巷
挽巷 2021-02-03 21:09

How do you update jupyterlab using conda or pip?

I understand that conda update jupyter updates jupyter notebook (I have Anaconda), but I\'m not sure this ta

4条回答
  •  一整个雨季
    2021-02-03 21:56

    If you prefer using pip:

    pip install --upgrade jupyterlab
    

    Or if you'd like a specific version:

    pip install jupyterlab==1.2.4
    

    Depending on your rights, you might also need to add a --user in there:

    pip install jupyterlab==1.2.4 --user
    

提交回复
热议问题