Step By Step
1、查看默认安装python版本
python --version
2、查看安装的env
conda info --envs
3、安装python37
- 3.1 切换至清华镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
- 3.2 创建环境
conda create -n py37 python=3.7
- 3.3 查看安装的环境
conda env list
OR
- 3.4 激活环境
source activate py37
4、为python37安装jupyter内核
- 4.1 安装内核
pip install ipykernel
- 4.2 加入python 3.7版本的内核
python -m ipykernel install --user --name=py37 --display-name py37
- 4.3 创建notebook
import sys
print(sys.version)
print(sys.executable)