在CentOS上安装PyTorch可以通过多种方式实现,包括使用Anaconda发行版或直接使用pip。以下是具体的安装步骤和注意事项:
安装Anaconda
创建虚拟环境
conda create -n pytorch python=3.8
激活虚拟环境
conda activate pytorch
安装PyTorch
conda install pytorch torchvision torchaudio cudatoolkit=11.8 -c pytorch
验证安装
import torch
print(torch.__version__)
print(torch.cuda.is_available())
如果选择使用pip安装PyTorch,可以按照以下步骤进行:
安装pip(如果尚未安装)
yum install python3-pip
安装PyTorch
pip install torch torchvision torchaudio -f https://pypi.tuna.tsinghua.edu.cn/simple
请注意,如果你需要使用GPU版本的PyTorch,确保你的系统上已经安装了兼容的NVIDIA GPU驱动和CUDA Toolkit。此外,不同版本的PyTorch可能对CUDA和cuDNN的版本有特定要求,请根据你的具体需求选择合适的版本进行安装。