Can't install tensorflow on python 3.9

Viewed 6756

When I try to install tensorflow on python 3.9 I get following error:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

Is not there any tensorflow for 3.9? What do you guys recommend? Can I install other version of python beside the existing version?

2 Answers

Right now tensorflow does not have a build for python3.9 The latest one is for python3.8

You can check the build files at PyPI https://pypi.org/project/tensorflow/#files

yes, you can install another version of python.

This is terrible with newer versions of Python that are not compatible with the machine learning module package. So my approach is to keep the existing version 3.9 and the computer is using Anaconda to install a virtual environment with 3.7. When using vscode or pycharm, just remember to set it to that 3.7 Python environment.

Related