如何安装pytorch
时间: 2023-06-29 20:14:18 浏览: 54
如何搭建pytorch环境
你可以通过以下步骤安装 PyTorch:
1. 确认 Python 版本:PyTorch 支持 Python 3.6、3.7、3.8 和 3.9。你需要确认你的 Python 版本是否符合要求。
2. 安装 PyTorch:你可以根据自己的操作系统和 CUDA 版本选择合适的安装方式。可以在 PyTorch 官网的安装页面找到相应的命令或安装包。
例如,在 Linux 上,你可以使用以下命令安装 CPU 版本的 PyTorch:
```
pip3 install torch torchvision torchaudio
```
如果你的机器有支持 CUDA 的显卡,你可以使用以下命令安装 GPU 版本的 PyTorch:
```
pip3 install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
其中 `cu111` 表示 CUDA 11.1 版本,你需要根据自己的 CUDA 版本进行修改。
安装完成后,你可以在 Python 中导入 PyTorch 并开始使用它了:
```python
import torch
# 创建一个 2x3 的张量
x = torch.tensor([[1, 2, 3], [4, 5, 6]])
# 打印张量
print(x)
```
输出结果:
```
tensor([[1, 2, 3],
[4, 5, 6]])
```
阅读全文