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

Numpy version error with pre-compiled release #672

Closed embis0126 closed 1 month ago

embis0126 commented 1 month ago

Bug Description Numpy version error with pre-compiled release

Steps to Reproduce Outline the steps to replicate the issue:

  1. Run "run-applio.bat"
  2. Profit

Expected Behavior For the app to start.

Assets image

A module that was compiled using NumPy 1.x cannot be run in
NumPy 2.0.2 as it may crash. To support both 1.x and 2.x
versions of NumPy, modules must be compiled with NumPy 2.0.
Some module may need to rebuild instead e.g. with 'pybind11>=2.12'.

If you are a user of the module, the easiest solution will be to
downgrade to 'numpy<2' or try to upgrade the affected module.
We expect that some modules will need time to support NumPy 2.

Desktop Details:

github-actions[bot] commented 1 month ago

The error message indicates that the pre-compiled Applio release was compiled with NumPy 1.x and is incompatible with the installed NumPy 2.0.2 version.

To resolve this issue, you can try downgrading NumPy to a version below 2.0 by running pip install 'numpy<2' in your command prompt or terminal. Alternatively, you can try to rebuild the affected module, but this may require more advanced steps.

If you're not comfortable with either of these solutions, you can also wait for an updated pre-compiled release of Applio that supports NumPy 2.0.2. Please refer to the official documentation at https://docs.applio.org for more information on dependencies and compatibility.

github-actions[bot] commented 1 month ago

It seems like you're experiencing a compatibility issue with Numpy versions. To better understand and address the problem, could you please provide more information about your environment and the steps you've taken so far?

Specifically, it would be helpful to know the version of Python you're using, the version of the affected module, and how you installed it. Additionally, have you tried downgrading Numpy to a version below 2 as suggested in the error message, or are there any other error messages that appear before this one?

Lastly, since you're using a pre-compiled release, are you able to recompile the module with a compatible version of Numpy and pybind11 (version 2.12 or higher), or are there any limitations that prevent you from doing so?

If you're looking for faster assistance, consider joining our support community on Discord, or please wait for a staff member to assist.

Vidalnt commented 1 month ago

try downloading the precompiled again

embis0126 commented 1 month ago

Fixed, thank you