Specimen Nr.115871675721
Specimen Nr.115871675721
Looks like you didn't copy the complete error text. Either way, i suggest you go through the complete install instructions again. Notes: - You should use the [recommended](https://github.com/hacksider/Deep-Live-Cam?tab=readme-ov-file#1setup-your-platform) python version...
I have 3 python version on my PC for the same reason. Use python virtual environment and set up a seperate environment for this project with python 10. See: https://docs.python.org/3.10/library/venv.html...
Both of you need to follow the installation instructions properly. Use virtual environment for python to ensure no mix-ups with pip. `no module named xxxx` means that package `xxxx` was...
I've added batch processing to the [fork](https://github.com/AVGRadmin/Deep-Live-Cam-Docker) i'm using for myself. Args are `-sf` / `--source_folder` and `-tf` / `--target_folder` Just ignore all the docker stuff. It should work as...
> Will this be merged into main? I have no plans to merge it myself. It's just something i'm "messing around" with for personal use. I could probably add a...
I've created a separate [fork](https://github.com/AVGRadmin/Deep-Live-Cam-Docker/) where i'm using docker containers (Linux tested only). I do have a image that uses Cuda 11.8 on the Hub, but i prefer 12.2 since...
Yeah i had some issues there myself. One thing i had to do is to switch from `inswapper_128_fp16.onnx`to use `inswapper_128.onnx` instead. But i can't really say if this is the...
I've created a "[Overhead](https://github.com/AVGRadmin/DeepLiveCam)" repo (Linux only) where you can choose to use different forks/repositories to run the application. It doesn't work out-of-the box with the original [repo](https://github.com/hacksider/Deep-Live-Cam) because of...
This error may occur if there's smth wrong with the model file `inswapper_128_fp16.onnx`. (Ref: [wiki](https://github.com/Gourieff/sd-webui-reactor?tab=readme-ov-file#v-invalid_protobuf--load-model-from-modelsinsightfaceinswapper_128onnx-failedprotobuf-parsing-failed-or-attributeerror-nonetype-object-has-no-attribute-get-or-attributeerror-faceswapscript-object-has-no-attribute-save_original)). Try manually downloading the model using ~[this](https://huggingface.co/datasets/Gourieff/ReActor/resolve/main/models/inswapper_128.onnx) link or~ try another model from google. Edit:...
`No module named 'onnxruntime'` Means that onnxruntime is not installed (pip install onnxruntime==1.18.0). You need to make sure you follow the install instructions properly. And as mentioned in this [issue](https://github.com/hacksider/Deep-Live-Cam/issues/503#issuecomment-2322854152),...