Use conda to switch environments in jupyter notebook

How to switch between different environments in conda

Using jupyter notebook, it is impossible to switch between multiple environments installed by anaconda, and I found that just install one software.

conda install nb_conda

Activate the environment corresponding to anaconda

conda activate chenbo

Install ipykernel

conda install ipykernel

Add the corresponding file

python -m ipykernel install --name chenbo

Re-run jupyter notebook, renderings
Insert picture description here
refer to address
1, https://www.jianshu.com/p/91365f343585

Create the environment

conda create -n your_env_name python=3.7

Delete environment

conda remove -n your_env_name --all

Guess you like

Origin blog.csdn.net/weixin_44322234/article/details/106136356