Error On Install Dependencies; expected? #127
Labels
No Label
bug
duplicate
enhancement
help wanted
insufficient info
invalid
news
not a bug
question
wontfix
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: mrq/ai-voice-cloning#127
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'm getting this error on install - the voice generation works, but I get a ffmpeg failure on generate transcript (ffmpeg.exe is in ./bin) not sure if they are related? Are these errors ignorable and should I dig else where to resolve the ffmpeg call issues? Thanks!
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
voicefixer 0.1.2 requires librosa<0.9.0,>=0.8.1, but you have librosa 0.10.0 which is incompatible.
pyannote-audio 2.1.1 requires einops<0.4.0,>=0.3, but you have einops 0.6.0 which is incompatible.
pyannote-audio 2.1.1 requires soundfile<0.11,>=0.10.2, but you have soundfile 0.12.1 which is incompatible.
tortoise 2.4.4 requires transformers==4.19, but you have transformers 4.26.1 which is incompatible.
You'll need to uninstall and install ffmpeg-python, for some reason.
Windows:
Linux:
I have similar error, using setup-cuda.sh.
Tried the ffmpeg-python uninstall/intsall, didn't do anything.
I tested this on ubuntu LTS 18, 20, 22, RockyLinux9 and their supported python versions, every time same message.
The setup-cuda.sh (i added set -e at the beginning so it'd stop at errors):
While performing installation manually, I get the error after:
My symptom was unrelated to the einops version error message and solved by mrq's suggestion above. Many thanks!
However I'm still getting the version conflict message on install/update, fyi
I get this error message in Google Colab. Why?
!source ./venv/bin/activate
/bin/bash: ./venv/bin/activate: No such file or directory
Tried it another way
%cd /content/ai-voice-cloning/venv/bin
!source ./activate
/bin/bash: ./activate: No such file or directory
And this way
!python -m venv venv
Error: Command '['/content/ai-voice-cloning/venv/bin/python3', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.
You're using an extremely old version of the notebook.
Where can I find the latest version? I downloaded this file here.
https://git.ecker.tech/mrq/ai-voice-cloning/raw/branch/master/notebook_colab.ipynb
Edit: Nevermind I think I found it.
https://git.ecker.tech/mrq/ai-voice-cloning.git
Edit: I noticed if I install this instead. Then I'll be able to use the source command
!apt install python3.9-venv
!source ./venv/bin/activate
That should be it. It doesn't have a line for
!source ./venv/bin/activate
, so whatever you're using is most definitely not the most recent version.