切换jupyter botebook的python内核版本

本文使用anaconda管理python版本
1、查看已有python版本

conda info --env

2、创建Python环境

conda create --name python35 python=3.5    #代表创建一个python3.5的环境,我们把它命名为python35

3、管理和使用python环境
进入python35环境:

source activate python35

4、删除python35

conda remove -n python35 --all

5、将python35这个环境作为jupyter notebook的内核
先进入python35的环境

pip install ipykernel
python -m ipykernel install --name python35

再重启jupyter notebook即可。

你可能感兴趣的:(切换jupyter botebook的python内核版本)