Real-time-voice-cloning: demo_toolbox_collab.ipynb Dependencies error

Created on 10 Jun 2020  路  5Comments  路  Source: CorentinJ/Real-Time-Voice-Cloning

Hi,

I was trying to use the demo_toolbox_collab.ipynb on Colab, however I get the following error:

image

Then I tried

!pip uninstall -y tensorflow
!pip install tensorflow-gpu==1.14.0

it fixed it but then I get another error:

image

What version should I use?

Thanks.

Most helpful comment

also, this has work for me

%tensorflow_version 1.x
import tensorflow
print(tensorflow.__version__)

%tensorflow_version 1.x
!pip install umap-learn
!pip install visdom
!pip install webrtcvad
!pip install librosa>=0.5.1
!pip install matplotlib>=2.0.2
!pip install numpy>=1.14.0
!pip install scipy>=1.0.0
!pip install tqdm
!pip install sounddevice
!pip install Unidecode
!pip install inflect
!pip install PyQt5
!pip install multiprocess
!pip install numba

All 5 comments

bump

Colab has TensorFlow 2.2.0 instaled by default. You have to unistall TensorFlow first:
!pip uninstall tensorflow

also, this has work for me

%tensorflow_version 1.x
import tensorflow
print(tensorflow.__version__)

%tensorflow_version 1.x
!pip install umap-learn
!pip install visdom
!pip install webrtcvad
!pip install librosa>=0.5.1
!pip install matplotlib>=2.0.2
!pip install numpy>=1.14.0
!pip install scipy>=1.0.0
!pip install tqdm
!pip install sounddevice
!pip install Unidecode
!pip install inflect
!pip install PyQt5
!pip install multiprocess
!pip install numba

It worked, thanks!!

This also solved the issue for me, maybe the Colab Book needs to be updated.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rlutsyshyn picture rlutsyshyn  路  10Comments

frossi65 picture frossi65  路  3Comments

MichaelAllenHardeman picture MichaelAllenHardeman  路  5Comments

nav1-code picture nav1-code  路  16Comments

ThinkGreen1984 picture ThinkGreen1984  路  4Comments