How to update jupyterlab using conda or pip?
问题 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 takes care of jupyterlab as well. 回答1: conda update jupyter will not automatically update jupyterlab. You have to explicitly request an update of jupyterlab: conda update jupyterlab 回答2: You may need to specify conda-forge: conda update -c conda-forge jupyterlab 回答3: If you prefer using pip: pip install --upgrade jupyterlab Or if you'd like