detectron2 The detected CUDA version mismatches 错误
我的报错信息
The detected CUDA version (9.1) mismatches the version that was used to compile PyTorch (11.3). Please make sure to use the same CUDA versions.
https://github.com/facebookresearch/detectron2/issues/4343#issuecomment-1229448546
根据这个问题
我查看了 nvcc --version
显示是9.1
解决方法
https://huaweicloud.csdn.net/638071e7dacf622b8df884df.html
在~/.bashrc
当中添加
export PATH=/usr/local/cuda-10.2/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-10.2/lib64:$LD_LIBRARY_PATH
10.2注意和所需的nvidia-smi版本对应
重新编译即可
本博文本意在于记录个人的思考与经验,部分博文采用英语写作,可能影响可读性,请见谅
本文来自博客园,作者:ZXYFrank,转载请注明原文链接:https://www.cnblogs.com/zxyfrank/p/17083529.html