tensorflow安装清华源
时间: 2023-11-01 18:00:20 浏览: 151
安装 TensorFlow 可以使用清华大学开源软件镜像站提供的源,以下是安装步骤:
1. 首先打开清华大学开源软件镜像站的 TensorFlow 页面:https://mirrors.tuna.tsinghua.edu.cn/tensorflow/
2. 找到适合自己的 TensorFlow 版本,比如最新版的 TensorFlow 2.6.0,然后点击对应的链接。
3. 进入该版本的下载页面后,找到“Installation”一栏,然后选择对应的操作系统和 Python 版本,比如 Linux + Python 3.8。
4. 在安装命令一栏中找到使用清华源的命令,比如:
```
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple tensorflow==2.6.0
```
5. 将上述命令复制到终端中执行即可。
注意:如果你使用的是 Anaconda 环境,可以通过以下命令将 pip 源设置为清华源:
```
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
```
然后再通过 conda 安装 TensorFlow 即可。
阅读全文