1、查看当前jupyter有哪些kernal
jupyter kernelspec list
2、jupyter删除指定的kernal
jupyter kernelspec remove tensorflow #把tensorflow换成要删除的kernal名称即可
3、jupyter增加指定的kernal
1) 进入指定的虚拟环境
source activate tensorflow #把tensorflow换成指定的虚拟环境名称
2) 查看当前虚拟环境下的python位置
which python
3) 增加kernal
sudo ~/anaconda3/envs/tensorflow/bin/python -m ipykernel install --name tensorflow #把tensorflow和路径换成自己对应的即可