AI源码解读:卷积神经网络(CNN)深度学习案例:Python版
上QQ阅读APP看书,第一时间看更新

1.2.2 TensorFlow环境

打开Anaconda Prompt,输入清华仓库镜像,输入命令:

    conda config--add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config-set show_channel_urls yes

创建Python环境,名称为TensorFlow,输入命令:

    conda create-n tensorflow python=3.5

有需要确认的地方,都输入y。

在Anaconda Prompt中激活TensorFlow环境,输入命令:

    activate tensorflow

安装CPU版本的TensorFlow,输入命令:

    pip install-upgrade--ignore-installed tensorflow

安装完毕。安装TensorFlow时注意与Python版本之间的对应,否则安装成功也无法调用。