pip安装GPU版本的pytorch
时间: 2024-09-08 22:02:16 浏览: 94
Ubuntu中安装GPU版本pytorch
5星 · 资源好评率100%
pip 安装 GPU 版本的 PyTorch 的步骤通常是针对特定的操作系统(如 Windows、macOS 或 Linux)的。首先,你需要确认你的计算机已经安装了 NVIDIA GPU,并且CUDA 和 cuDNN 驱动程序也已更新到最新版。
1. **更新包管理器** (对于Linux):
- 对于 Ubuntu/Debian 系统: `sudo apt-get update && sudo apt-get install python3-pip`
- 对于 CentOS/Fedora: `sudo yum install python3-pip`
2. **安装 CUDA 和 cuDNN**:
- 访问 NVIDIA Developer网站下载并安装对应的 CUDA 包,然后安装 cuDNN。注意,cudnn需要与安装的CUDA版本相匹配。
3. **添加国内镜像源** (如果有需要):
- 在Python中安装PyPI的国内镜像源,比如阿里云或者清华大学源,例如:
```
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
```
4. **安装 GPU 版本 PyTorch**:
- 使用以下命令安装 torch 和 torchvision 库,带`cuda`后缀表示支持GPU:
```
pip install torch torchvision -f https://download.pytorch.org/whl/torch_stable.html --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple/
```
或者安装特定版本,例如 v1.9.0:
```bash
pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111
```
5. **检查安装**:
安装完成后,你可以通过以下代码验证是否成功安装了 GPU 版本的 PyTorch:
```python
import torch
print(torch.cuda.is_available()) # 如果输出 True,说明安装成功
```
阅读全文