-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scipy version issue: ImportError: cannot import name 'cumtrapz' from 'scipy.integrate #91
Comments
@lucaducceschi Hi Luca, did you find a solution for that? I met the same problem |
I needed to run Disvoice on Colab. There, the solution is to downgrade Scipy
Install these versions of the other dependencies:
Go the Disvoice directory and run the setup.py file
Then, rename two directories using lower case characters (which is what was creating the issue in my case):
Locally, I don't know if this is enough (it should be). Let me know if that helps. |
@lucaducceschi Hi Luca, thank you for the reply! I still used scipy ('1.14.1'). Following your comment, I changed "cumptraz" to "cumulative_trapezoid". Besides, additional changes are needed to run glottal.py. I attach here in case others need: for utils_gci.py, update to: |
Thanks all for the updates to fix the issues The dependencies have been updated The lates version of the tool inorporates your solutions |
Scipy changed the name of cumptraz function to "cumulative_trapezoid". Pip installs the newer version of scipy ('1.14.1'), but the requirements.txt file reports version 1.10.0.
The text was updated successfully, but these errors were encountered: