Skip to content

Instantly share code, notes, and snippets.

@wuriyanto48
Created January 6, 2024 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wuriyanto48/2a3b557cc3893b0ed0facd8e6d56d0a9 to your computer and use it in GitHub Desktop.
Save wuriyanto48/2a3b557cc3893b0ed0facd8e6d56d0a9 to your computer and use it in GitHub Desktop.
install pytorch

Install pytorch CPU only

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

Install pytorch GPU

pip3 install torch torchvision torchaudio

Verify

import torch
print(torch.__version__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment