pip install tensorflow==2.5.0 改为采用豆瓣源
时间: 2023-07-16 14:17:02 浏览: 144
pip使用豆瓣源安装或者更改为其他源
您可以通过以下命令将pip源更改为豆瓣源:
```
pip config set global.index-url https://pypi.doubanio.com/simple/
```
然后使用以下命令安装指定版本的TensorFlow:
```
pip install tensorflow==2.5.0
```
阅读全文