Home > Enterprise >  How do I get Tensorflow 1.8?
How do I get Tensorflow 1.8?

Time:03-23

I'm trying to use Speaker-Diarization from GitHub(link below), but it requires Tensorflow 1.8 through 1.15. so I have been scrolling through TensorFlow's official website, and I can't find anything linked to previous versions , so I am not sure if my python 3.8 would work? or how to pip Tensorflow 1.8 1.15?

Speaker-Diarization

CodePudding user response:

Just install it through pip

pip install tensorflow==1.15

CodePudding user response:

Tensorflow and pip are wierd at least for me. Id recommend downloading Anaconda and creating a virtual enviorment using its command prompt or powershell

Also I highely recommend using the GPU version ofc.

conda create -n tf-gpu tensorflow-gpu
conda activate tf-gpu
  • Related