1

According to Pytorch I used this command in cmd

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

enter image description here

enter image description here

But CUDA still unavailable. Could someone help me, please?

import torch
print(torch.cuda.is_available())

The output will be False

An Ri
  • 406
  • 5
  • 13
  • 1
    Among the requirements for a proper CUDA install are that you need a CUDA-capable GPU, as well as a properly installed GPU driver of new enough version to support the software stacks (e.g. CUDA 11.3) that you want to use. – Robert Crovella May 23 '22 at 18:12

2 Answers2

1

You have to update driver first:

Here is a concept diagram from nvidia website

enter image description here

Here is another one:

enter image description here

More at CUDA Compatibility

trsvchn
  • 8,033
  • 3
  • 23
  • 30
0

You still have to install cuda-toolkit and cudnn on your machine

Saddam Azy
  • 61
  • 4