facebookresearch / frankmocap

A Strong and Easy-to-use Single View 3D Hand+Body Pose Estimator
Other
2.14k stars 374 forks source link

error #178

Closed liuhaorandezhanghao closed 2 years ago

liuhaorandezhanghao commented 2 years ago

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

penincillin commented 2 years ago

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

Taylorminer commented 2 years ago

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?

penincillin commented 2 years ago

@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.

liuhaorandezhanghao commented 2 years ago

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?