OSError: libcudart.so.9.0: cannot open shared object file: No such file or directory

when i was trying to prepare voc dataset for training pre trained model
https://gluon-cv.mxnet.io/build/examples_datasets/detection_custom.html#derive-from-pascal-voc-format
i got this error
OSError: libcudart.so.9.0: cannot open shared object file: No such file or directory

from gluoncv.data import VOCDetection class VOCLike(VOCDetection): CLASSES = ['iris'] def __init__(self, root, splits, transform=None, index_map=None, preload_label=True): super(VOCLike, self).__init__(root, splits, transform, index_map, preload_label) dataset = VOCLike(root='/home/dell/Bureau/myDataset', splits=((2019, 'train'),)) print(dataset[0][1])
Knowing that I can’t use cuda or gpu because i haven’t a graphic card nvidia

python 3.6
os ubuntu 18
Pillow-5.4.1 gluoncv-0.4.0 scipy-1.2.1 tqdm-4.31.1

I had a look on https://gluon-cv.mxnet.io/build/examples_datasets/detection_custom.html but I could not reproduce your problem. Did you set the context to mx.gpu?