Open MANGOMONKEY9 opened 7 months ago
encountering the same issue
encountering the same issue. was anyone able to resolve it?
similar error :/
Technically, in Python 3.3 and later, you can directly import from a folder (though not recommended) using the following syntax:
from folder_name.module_name import function_name # Assuming folder_name contains an __init__.py file
So in the openvoice case you have to call this from within a folder which is one level above the "openvoice" folder
I encountered the same issue, in the end I git clone a new copy from the repo, and make sure IDE recognised it as a Python project then it works for me.
Also I cd into the /OpenVoice and do pip3 install -e . pip3 install git+https://github.com/myshell-ai/MeloTTS.git python3 -m unidic download
trying to import:
from openvoice import se_extractor from openvoice.api import BaseSpeakerTTS, ToneColorConverter
and getting a ModuleNotFoundError. Tried almost everything. Any advice?