Anaconda 安装tensorflow-1.15
流程
python的更新:python -m pip install --upgrade pip
1、创建虚拟环境tensorflow:
conda create --name tensorflow python=3.6
2、检测是否安装成功:
conda info --envs
3、激活tensflow的环境:
activate tensorflow
4、安装tensorflow
【中国科技大学镜像站】的地址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda install tensorflow==1.15.0
conda install --channel https://conda.anaconda.org/hanyucui tensorflow-gpu=1.15
5、顺便安装sklearn
conda install scikit-learn
6、取消激活环境以及删除环境