如何使用清华镜像安装tensorflow
时间: 2023-11-18 09:44:03 浏览: 241
在Anaconda3下使用清华镜像源安装TensorFlow(CPU版)
以下是在使用清华大学镜像站安装 TensorFlow 的步骤:
1. 首先,打开 TensorFlow 官方网站,找到适合您系统的 TensorFlow 安装指南。在这里,我们以安装 TensorFlow 2.6.0 为例,您可以在 https://www.tensorflow.org/install 安装其他版本。
2. 打开终端,进入您希望安装 TensorFlow 的虚拟环境或系统环境。
3. 使用 pip 安装 TensorFlow。在终端中输入以下命令:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==2.6.0
```
上述命令将使用清华大学镜像安装 TensorFlow 2.6.0。
4. 等待安装完成。安装完成后,您可以在 Python 中导入 TensorFlow 并使用它。
```
import tensorflow as tf
print(tf.__version__)
```
以上就是使用清华大学镜像站安装 TensorFlow 的步骤。
阅读全文