ModuleNotFoundError: No module named ‘_ext‘

今天遇到这个报错,记录一下自己的解决过程,以便之后查找:

报错之后,首先是查找了

CUDA10.1 + python3.7 + pytorch1.7 安装DCNv2_ClaireQi的博客-CSDN博客_dcnv2安装

这篇文章,针对自己的环境下载相应的DCN_v2的压缩包,之后进行解压和./make.sh

在这报了另外的错:

-bash 权限不够_iteye_6300的博客-CSDN博客

此时采用这篇文章将其权限给予,之后报了另外的错:

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

【pytorch】libcudart.so.10.1: cannot open shared object file: No such file or directory__Patrick_Star_的博客-CSDN博客

采用这篇文章将其对应自己的cuda版本

最后解决我当时import _ext 出现问题的情况

你可能感兴趣的:(pytorch)