- AI源码解读:数字图像处理案例(Python版)
- 李永华编著
- 148字
- 2022-07-27 17:26:27
AI源码解读.数字图像处理案例:Python版
4.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
创建Python3.7环境,名称为TensorFlow,此时Python版本和TensorFlow版本有匹配问题,此步选择Python3.x,输入命令:
conda create - n TensorFlow python=3.7
有需要确认的地方,都输入y。
在Anaconda Prompt中激活TensorFlow环境,输入命令:
activate TensorFlow
安装CPU版本的TensorFlow,输入命令:
pip install - upgrade -- ignore - installed TensorFlow
安装完毕。