tensorflow-gpu 国内镜像
时间: 2023-10-05 07:08:08 浏览: 102
tensorflow-gpu
可以使用以下几个国内镜像进行 TensorFlow-GPU 安装:
1. 清华大学开源软件镜像站:https://mirror.tuna.tsinghua.edu.cn/help/tensorflow/
2. 阿里云 PyPI 镜像:https://mirrors.aliyun.com/pypi/simple/tensorflow-gpu/
3. 豆瓣 PyPI 镜像:https://pypi.doubanio.com/simple/tensorflow-gpu/
使用方法:
在 pip 安装时,加入 -i 参数指定镜像源即可,例如:
```
pip install tensorflow-gpu -i https://mirrors.aliyun.com/pypi/simple/
```
或
```
pip install tensorflow-gpu -i https://pypi.doubanio.com/simple/
```
注意:不同的镜像源可能会有一些差异,建议根据自己的情况选择适合自己的镜像源。
阅读全文