jbwang1997 / OBBDetection

OBBDetection is an oriented object detection library, which is based on MMdetection.
Apache License 2.0
522 stars 112 forks source link

pip install -v -e . 报错 #84

Open houw0517 opened 2 years ago

houw0517 commented 2 years ago

您好!,我的运行环境是RTX3090,运行pip install -v -e . 报错, nvcc fatal : Unsupported gpu architecture 'compute_86' ninja: build stopped: subcommand failed.

jbwang1997 commented 2 years ago

这个错误还没有遇见过,可以在网上查一下

colorfully-ybf commented 2 years ago

您好!,我的运行环境是RTX3090,运行pip install -v -e . 报错, nvcc fatal : Unsupported gpu architecture 'compute_86' ninja: build stopped: subcommand failed.

你好你的问题解决了吗,我的也是3090

houw0517 commented 2 years ago

没有解决

colorfully-ybf commented 2 years ago

nvcc fatal : Unsupported gpu architecture 'compute_86' ninja: build stopped: subcommand failed.

我看百度说的是算力不支持需要更新pytorch版本,你有试过吗

houw0517 commented 2 years ago

试过了 不太行啊

colorfully-ybf commented 2 years ago

试过了 不太行啊

加个微信讨论一下?

houw0517 commented 2 years ago

可以啊 怎么加您

colorfully-ybf commented 2 years ago

可以啊 怎么加您

aithui1

chl916185 commented 2 years ago

我也是rtx3090,遇到了同样的问题,怎么解决啊

geobao commented 2 years ago

我也是rtx3090 I am trying: ARG PYTORCH="1.9.0" ARG CUDA="11.1" ARG CUDNN="8" FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel ENV CUDALONG=111 ENV TORCH_CUDA_ARCH_LIST="8.6"

It doesn't work

geobao commented 2 years ago

Before I had: pip install mmcv-full>=1.3 -f https://download.openmmlab.com/mmcv/dist/cu${CUDALONG}/torch${PYTORCH}/index.html Now I fixed it to pip install mmcv-full==1.3 -f https://download.openmmlab.com/mmcv/dist/cu${CUDALONG}/torch${PYTORCH}/index.html This fixed it for me