【配环境】pytorch3d版本不匹配导致ImportError: libtorch_cuda_cu.so: cannot open shared object file

报错

ImportError: libtorch_cuda_cu.so: cannot open shared object file: No such file or directory

原因

之前直接用pip install下载的pytorch3d版本和环境不匹配,需要考虑到cuda、pytorch、python版本。

解决方式

最稳妥的方式就是直接官网下载。

  1. 到Anaconda官网https://anaconda.org/pytorch3d/pytorch3d/files,下载版本匹配的pytorch3d文件,右键复制链接
    【配环境】pytorch3d版本不匹配导致ImportError: libtorch_cuda_cu.so: cannot open shared object file_第1张图片
  2. 替换成复制的链接即可
conda install https://anaconda.org/pytorch3d/pytorch3d/0.7.5/download/linux-64/pytorch3d-0.7.5-py38_cu118_pyt201.tar.bz2

你可能感兴趣的:(pytorch,人工智能,python,3d)