Houmes
Houmes

Reputation: 71

ERROR : could not find a version that satisfies the requirement tensorflow

I'm using raspberry model 3B+ , I made a venv and then tried to install tensorflow but I get these 2 errors ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)

ERROR: No matching distribution found for tensorflow

I managed to install other libraries but only tensorflow I wasn't able to install.

Upvotes: 5

Views: 23558

Answers (2)

Szymon Palucha
Szymon Palucha

Reputation: 189

I just had this issue on the latest Macbook Pro (Apple M1 Pro Chip). The solution seems to be to pip install tensorflow-macos. This gave me an error ERROR: Failed building wheel for h5py which I solved by following this post.

Upvotes: 10

user11530462
user11530462

Reputation:

Could you please verify the below requirements:

  1. Is your pc 64 bits, the python and os used should be 64 bits.
  2. $ sudo pip3 install setuptools --upgrade
  3. TensorFlow v2.4 is compatible with Python 3.6 - 3.8. For more information, please take a look at the tested build configurations.

4. verify the below: python --version, python -m pip --version and python -m pip install -vvv tensorflow [have latest version of all including tensorflow stable version 2.x]

Upvotes: 1

Related Questions