可以直接修改里面的配置
可选国内源: 豆瓣:http://pypi.douban.com/simple/ 中科大:https://pypi.mirrors.ustc.edu.cn/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云 http://mirrors.aliyun.com/pypi/simple/
创建python2.7版本虚拟环境
conda create -n env_name python=2.7进入环境
activate env_name添加到可选的kernel
pip install ipykernel通过ipykernel为jupyter添加python2.7环境
python -m ipykernel install --name env_name关闭python2.7环境
deactivate重新打开jupyter notebook可以看到python2.7版本的py27已经添加
删除 jupyter 内核
jupyter kernelspec remove 'kernelname'