IAHispano / Applio

A simple, high-quality voice conversion tool focused on ease of use and performance.
https://applio.org
MIT License
1.7k stars 276 forks source link

[BUG] Pip update in Makefile causes installation to fail on Linux (24.0 downgrade fixes) #501

Closed Mojobones closed 3 months ago

Mojobones commented 3 months ago

In the makefile there's a line of "pip install --upgrade pip"

This causes "make run-install" to fail as Pip will update itself further than is compatible with Fairseq and omegaconf.

Replacing this line with "pip install pip==24.0" ensures that the installation works, as it reverts pip to a compatible version.

Not necessarily proposing using that specific version, but more reporting there's an issue installing with the makefile, and downgrading the pip version seems to fix it.

blaisewf commented 3 months ago

feel free to open a pr

Mojobones commented 3 months ago

feel free to open a pr

https://github.com/IAHispano/Applio/pull/502