Retrieval-based-Voice-Conversion-WebUI icon indicating copy to clipboard operation
Retrieval-based-Voice-Conversion-WebUI copied to clipboard

import onnx onnx_cpp2py_export SOLUTION

Open secretgrampuh opened this issue 1 year ago • 0 comments

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

secretgrampuh avatar Aug 08 '24 00:08 secretgrampuh