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

Then I tried
!pip uninstall -y tensorflow
!pip install tensorflow-gpu==1.14.0
it fixed it but then I get another error:

What version should I use?
Thanks.
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.
Most helpful comment
also, this has work for me