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???