Home > Mobile >  Why CUDA is unavailable for using with easyocr?
Why CUDA is unavailable for using with easyocr?

Time:05-24

According to 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

CodePudding user response:

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

  • Related