Retrieval-based-Voice-Conversion-WebUI
Retrieval-based-Voice-Conversion-WebUI copied to clipboard
import onnx onnx_cpp2py_export SOLUTION
I was having an issue launching RVC infer-web.py, it kept saying: Importing onnx fails with "DLL load failed while importing onnx_cpp2py_export"
Found the solution on this thread: https://github.com/onnx/onnx/issues/6267
Essentially there is an issue with the onnx version. I noticed in the requirements.txt it is one of the only libraries without a hardcoded version number.
The solution is:
pip uninstall onnx
pip install onnx==1.16.1