Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing TensorFlow 1.15

I've been trying to install TensorFlow version 1 and It does not seem to exist anymore. My project requires TensorFlow v1 and cannot use v2

pip install tensorflow==1.15

this returns

ERROR: Could not find a version that satisfies the requirement tensorflow==1.15 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3,
2.2.0rc4, 2.2.0) ERROR: No matching distribution found for tensorflow==1.15

how can I install this specific version?

like image 593
4 1 Avatar asked Nov 23 '25 03:11

4 1


1 Answers

pip install https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.5.0-py3-none-any.whl

This solution worked for me

like image 138
4 1 Avatar answered Nov 25 '25 16:11

4 1