创建虚拟环境 tensorflow,安装指定版本的 python
onda search python # 查看当前 canda 镜像下能获得的 python版本
conda create -n tensorflow python=3.5 # 创建名称为 tensorflow 的虚拟环境,在此环境下安装 3.5python
将新创建的虚拟环境添加到 Jupyter notebook 中
conda activate tensorflow # 切换到虚拟环境tensorflow
pip install ipykernel # 在tensorflow 中安装 ipykernel 包
python -m ipykernel install --name tensorflow # 向 jupyter 中添加虚拟环境
打开 Jupyter notebook ,选择环境
这是浏览器会自动打开网站