在Linux环境下安装PyTorch可以分为几个主要步骤,具体取决于你是否需要使用GPU支持。以下是在Linux环境下安装PyTorch的详细指南:
更新系统包
sudo apt update && sudo apt upgrade -y
安装Anaconda
bash Anaconda3-2022.10-Linux-x86_64.sh
.bashrc
文件中添加Anaconda的路径。创建虚拟环境
conda create --name pytorch_env python=3.8
conda activate pytorch_env
安装PyTorch
conda install pytorch torchvision torchaudio cpuonly -c pytorch
conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
验证安装
python -c "import torch; print(torch.__version__)"
更新包管理器
sudo apt-get update
安装Python和基本库
sudo apt-get install python3-pip
pip3 install torch torchvision
检查CUDA和cuDNN支持(如果使用GPU)
pip3 install torch torchvision -f https://download.pytorch.org/whl/cu118/torch_stable.html
验证安装
python -c "import torch; print(torch.__version__)"
请根据你的系统配置和需求选择合适的安装方法。如果你使用的是GPU版本,请确保你的系统已经正确安装了NVIDIA驱动和相应的CUDA版本。