Anaconda的安装包可以到官网下载,也可以在 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载
输入
bash ./Anaconda3-5.0.0-Linux-x86_64.sh
安装Anaconda。
创建一个tensorflow环境
conda create -n tensorflow python=3.6
激活环境
source activate tensorflow
安装tensorflow
conda install -n tensorflow -c https://conda.anaconda.org/jjhelmus tensorflow
tensorflow环境下安装Spyder
conda install -n tensorflow spyder
安装opencv
conda install -c menpo opencv3