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
conda update jupyter
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:
--user
pip install jupyterlab==1.2.4 --user