Алексеев Илья

Results 4 comments of Алексеев Илья

You have an incompatible CUDA version. There is onnx 1.16.3 in the dependencies, which requires CUDA 11.8 ([source](https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirements)). To solve this, either downgrade your CUDA or run this app in...

I managed to make it work on my Ubuntu 24.04 system with docker and nvidia-container-toolkit. Dockerfile ```Dockerfile FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y python3 python3-pip...

Adding the container to main code might be tricky because of tkinter. The way GUI is "tunnelled" from container to host machine is host-specific. Here I used unix X server....

> > 您有不兼容的CUDA版本。依赖项中有onnx 1.16.3,需要CUDA 11.8([源代码](https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirements))。 > > 要解决这个问题,要么降级你的CUDA,要么在Docker容器中运行这个应用,比如`nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04` > > hello,Do you have any experience with this kind of situation? "E:\Deeplivecam\Deep-Live-Cam>pip install onnxruntime-gpu==1.16.3 ERROR: Could not find a version that...