HRNPH / AIwaifu

Open-Waifu open-sourced finetunable customizable simpable AI waifu inspired by neuro-sama
GNU General Public License v2.0
402 stars 31 forks source link

can't import Sovits Monotolic Align #41

Closed Sylensar closed 1 year ago

Sylensar commented 1 year ago

Initializing... Dependencies Traceback (most recent call last): File "d:\ainy4\AIwaifu-master\main.py", line 19, in from AIVoifu.voice_conversion import vc_inference as vc File "d:\ainy4\AIwaifu-master\AIVoifu\voice_conversion\vc_inference.py", line 13, in from .Sovits.data_utils import UnitAudioLoader, UnitAudioCollate File "d:\ainy4\AIwaifu-master\AIVoifu\voice_conversion\Sovits\data_utils.py", line 10, in from .models import SynthesizerTrn File "d:\ainy4\AIwaifu-master\AIVoifu\voice_conversion\Sovits\models.py", line 10, in from . import monotonic_align File "d:\ainy4\AIwaifu-master\AIVoifu\voice_conversion\Sovits\monotonic_align__init__.py", line 3, in from .monotonic_align.core import maximum_path_c ModuleNotFoundError: No module named 'AIVoifu.voice_conversion.Sovits.monotonic_align.monotonic_align.core' PS D:\ainy4> pip install AIVoifu.voice_conversion.Sovits.monotonic_align.monotonic_align.core ERROR: Could not find a version that satisfies the requirement AIVoifu.voice_conversion.Sovits.monotonic_align.monotonic_align.core (from versions: none) ERROR: No matching distribution found for AIVoifu.voice_conversion.Sovits.monotonic_align.monotonic_align.core

HRNPH commented 1 year ago

As for this, you need to build Sovits.monotonic_align.monotonic_align.core referring to this Issue #35

This should work (if you cd correctly)

cd "d:/ainy4/AIwaifu-master/AIVoifu/voice_conversion/Sovits/monotonic_align"
python setup.py build_ext --inplace

Please give feedback & close this in case it fixed

Sylensar commented 1 year ago

@HRNPH

C:\Users\oung\AppData\Local\Programs\Python\Python310\python.exe: can't open file 'D:\ainy4\AIwaifu\setup.py': [Errno 2] No such file or directory PS D:\ainy4\AIwaifu> cd "d:/Rainy4/AIwaifu-master/AIVoifu/voice_conversion/Sovits/monotonic_align"

python setup.py build_ext --inplace cd : Cannot find path 'D:\ainy4\AIwaifu-master\AIVoifu\voice_conversion\Sovits\monotonic_align' because it does not exist. At line:1 char:1

  • cd "d:/ainy4/AIwaifu-master/AIVoifu/voice_conversion/Sovits/monotoni ...
  • CategoryInfo : ObjectNotFound: (D:\ainy4\AIwai...monotonic_align:String) [Set-Location], ItemNotFoundException
  • FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand

C:\Users\oung\AppData\Local\Programs\Python\Python310\python.exe: can't open file 'D:\ainy4\AIwaifu\setup.py': [Errno 2] No such file or directory

HRNPH commented 1 year ago

@Sylensar please try 'cd' into the correct directory and get into Sovits folder first

then use

dir

to check for files and directories

it's just that you didn't cd into the correct folder so the build command didn't work

please check your folder structure and cd into the correct one

Sylensar commented 1 year ago

cd D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits

@HRNPH Is this correct?

HRNPH commented 1 year ago

try cd in and use

pwd

to see if you're in the correct path

you don't really need to use full path you can also use relative path

Example:

pwd
> C:/MyFolder
cd ./folder
# equal to cd C:/MyFolder/folder
Sylensar commented 1 year ago

@HRNPH Okay It says im in PS D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits>

should be correct

HRNPH commented 1 year ago

@HRNPH Okay It says im in PS D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits>

should be correct

Ok then try using

dir

check all the files and folders existed

actually at this point running

python setup.py build_ext --inplace

should now work

Sylensar commented 1 year ago

@HRNPH yup i see the list.

HRNPH commented 1 year ago

@HRNPH yup i see the list.

try running build command

Sylensar commented 1 year ago

This is the correct list right?

Directory: D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits

Mode LastWriteTime Length Name


d----- 5/24/2023 1:47 PM assets d----- 5/24/2023 1:47 PM configs d----- 5/24/2023 1:47 PM examples d----- 5/24/2023 1:47 PM filelists d----- 5/24/2023 1:47 PM JDC d----- 5/27/2023 6:30 PM monotonic_align d----- 5/27/2023 6:18 PM pycache ------ 5/24/2023 1:47 PM 4778 commons.py ------ 5/24/2023 1:47 PM 12601 data_utils.py ------ 5/24/2023 1:47 PM 1069 LICENSE ------ 5/24/2023 1:47 PM 1353 losses.py ------ 5/24/2023 1:47 PM 4143 mel_processing.py ------ 5/24/2023 1:47 PM 21125 models.py ------ 5/24/2023 1:47 PM 15107 modules.py ------ 5/24/2023 1:47 PM 4685 README.md ------ 5/24/2023 1:47 PM 95 requirements.txt ------ 5/24/2023 1:47 PM 13166 train.py ------ 5/24/2023 1:47 PM 12101 train_ms.py ------ 5/24/2023 1:47 PM 8490 transforms.py ------ 5/24/2023 1:47 PM 7390 utils.py

HRNPH commented 1 year ago

Yeah Legit, Now build it btw don't just use "Get Error" as an issue title

It's not really informative please use something like a brief summary of error

Sylensar commented 1 year ago

Upon pasting python setup.py build_ext --inplace I get

can't open file 'D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits\setup.py': [Errno 2] No such file or directory PS D:\ainy4\AIwaifu\AIVoifu\voice_conversion\Sovits> again @HRNPH . I double check the files and I see everything in the Sovits folder so idk.

HRNPH commented 1 year ago

wait wait please cd into the monotonic_align folder first

then run build command

you almost there

Sylensar commented 1 year ago

I think im having a problem correctly install pyopenjtalk now @HRNPH Tells me

Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

HRNPH commented 1 year ago

I think im having a problem correctly install pyopenjtalk now @HRNPH Tells me

Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

as for this please read this issue

I;m pretty sure you didn't have correct build tools installed

20