pytorch安装命令

Linux

CUDA10.2:


conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch

pip3 install torch torchvision torchaudio

CUDA11.6:

conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113

CPU:

conda install pytorch torchvision torchaudio cpuonly -c pytorch
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu

你可能感兴趣的:(python,pytorch,python,深度学习)