在CentOS上安装PyTorch的兼容版本,你需要先确保系统已经安装了Python和pip
sudo yum update -y
sudo yum install -y gcc openssl-devel bzip2-devel libffi-devel wget
sudo yum install -y python3 python3-pip
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu113
这里,cu113
表示你正在使用CUDA 11.3版本。如果你使用的是其他版本的CUDA,请将cu113
替换为相应的版本号。
python3 -c "import torch; print(torch.__version__)"
这将输出已安装的PyTorch版本。现在你可以在CentOS上运行和测试PyTorch了。