Install Jupyter Notebook/Lab
conda
If you use conda, you can install it with:
conda install -c conda-forge jupyterlab
pip
If you use pip, you can install it with:
pip install jupyterlab
Check & uninstall Jupyter Kernels
Run jupyter kernelspec list to get the paths of all your kernels.
Then simply uninstall your unwanted-kernel
jupyter kernelspec uninstall unwanted-kernel
settings
jupyter lab --generate-config
c.SeverApp.root_dir = ‘…ypur path to save notebooks’ # new version
or
c.NotebookApp.notebook_dir = ‘…ypur path’
Clone env
conda create --name new_env --clone pre_env
本文详细介绍如何使用conda和pip安装JupyterLab,提供检查和卸载Jupyter内核的方法,并指导设置工作目录。此外,还分享了如何通过克隆现有环境创建新环境的技巧。
2526

被折叠的 条评论
为什么被折叠?



