anaconda使用(二)jupyter notebook和各个环境的关系?内核的切换?为什么在jupyter里import报错?
1.关系
用anaconda创建环境后,在环境里需要安装jupyter notebook,否则使用的就是base里面的jupyter
conda create -n new_env
activate new_env
conda install jupyter notebook
2.jupyter在哪里
base的jupyter
自己创建的环境的jupyter
kernels就是使用的内核
3.使用哪个环境的jupyter,就在哪个环境里进jupyter(在anaconda里导),这样在jupyter notebook里才不会报错
jupyter notebook内核 查看、安装、删除(window)
https://blog.csdn.net/qq_40256654/article/details/85109843