
TensorFlow CPU版本安装指南
5星
- 浏览量: 0
- 大小:None
- 文件类型:None
简介:
本指南详细介绍如何在没有GPU支持的情况下安装和配置TensorFlow的CPU版本,适合初学者快速上手深度学习项目。
1. 在 Anaconda Prompt 中配置清华镜像:
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
```
2. 安装 TensorFlow:
```
conda create -n tf2 tensorflow
```
检查是否安装成功。
全部评论 (0)
还没有任何评论哟~


