facebookresearch/frankmocap

error

liuhaorandezhanghao opened this issue · 4 comments

from detectron2 import _C
ImportError: libcudart.so.10.1: cannot open shared object file: No such file or directory

@liuhaorandezhanghao
It seems that CUDA-10.1 is not either correctly installed or correctly imported. Besides, CUDA 10.1 is preferred.

from detectron2 import _C ImportError: libcudart.so.10.1: cannot open shared object file: No such file or directory

I meet the same error. The CUDA version is 11.1. Do you solve the error?

@Taylorminer @liuhaorandezhanghao
As the error itself said, libcudart.so.10.1 is missing, which means CUDA version 10.1 is required here. You can either use CUDA 10.1 or install the Pytorch, Pytorch-3D that match the CUDA version on your side.

from detectron2 import _C ImportError: libcudart.so.10.1: cannot open shared object file: No such file or directory

I meet the same error. The CUDA version is 11.1. Do you solve the error?

have you solved it?