1

I've been struggling with this issue for 3 hours now, I've tried multiple anaconda environments, but it just wont work. I'm trying to use tenforflow version 1.13.1 and I cant get it to pip install

This is the code i've been using (in jupyter notebook)

!pip uninstall tensorflow -y
print('-----')
!pip install tensorflow==1.13.1
print('_____')
!pip install tensorflow-gpu==1.13.1

and the error i keep receiving is the following:

WARNING: Skipping tensorflow as it is not installed.
-------
ERROR: Could not find a version that satisfies the requirement tensorflow==1.13.1 (from versions: 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1)
ERROR: No matching distribution found for tensorflow==1.13.1
_______
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.13.1 (from versions: none)
ERROR: No matching distribution found for tensorflow-gpu==1.13.1

Can anybody save me from this path of total error???

Britta
  • 135
  • 1
  • 1
  • 8

1 Answers1

6

TensorFlow dropped the support of versions 1.* in python 3.8: https://github.com/tensorflow/tensorflow/issues/39768

I would try working with python 3.7 or 3.6 instead

orlevii
  • 427
  • 4
  • 10