I am currently trying to install Tensorflow 1.15.0
, but my current Python version is 3.8.10 which doesn't support that version of Tensorflow
. I installed Python3.7
using the following command:
sudo apt install python3.7
And used these commands from this post:
pip3 install ipykernel --upgrade
python3 -m ipykernel install --user
But when I run
!python3 --version
it still shows 3.8.10 and Tensorflow 1.15.0
fails to install with the following error:
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.15.0 (from versions: 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1)
ERROR: No matching distribution found for tensorflow-gpu==1.15.0
I am not willing to uninstall Python 3.8, because last time I did that it completely broke my OS and forced me to reinstall the entire thing. How do I solve this issue? I am on Ubuntu 20.04