使用清华镜像安装TensorFlow 1.5
时间: 2024-04-29 14:26:29 浏览: 199
可以参考以下步骤:
1. 首先需要配置清华镜像源。可以使用以下命令:
```
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common gnupg2
curl https://mirrors.tuna.tsinghua.edu.cn/keys/debian/mirrors.tuna.tsinghua.edu.cn.asc | sudo apt-key add -
sudo add-apt-repository "deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free"
sudo add-apt-repository "deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free"
sudo add-apt-repository "deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free"
sudo add-apt-repository "deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free"
sudo apt-get update
```
2. 然后安装 TensorFlow 1.5。可以使用以下命令:
```
sudo apt-get install python3-dev python3-pip python3-venv
sudo pip3 install --upgrade pip
sudo pip3 install tensorflow==1.5
```
安装完成后,可以使用以下命令验证 TensorFlow 是否成功安装:
```
python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
```
如果输出结果类似如下信息,则表示 TensorFlow 已经成功安装:
```
Tensor("Sum:0", shape=(), dtype=float32)
```
阅读全文