5

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.

Houmes
  • 71
  • 1
  • 1
  • 7

2 Answers2

10

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.

Szymon Palucha
  • 161
  • 1
  • 5
  • If you have a new question, please ask it by clicking the [Ask Question](https://stackoverflow.com/questions/ask) button. Include a link to this question if it helps provide context. - [From Review](/review/late-answers/31699120) – Cornelius Roemer May 12 '22 at 00:49
1

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]

  • 1
    thank you but it seems that raspberry latest versions (the full version) comes with a tenorflow installed in it because i didn't install it and yet i found out that i already have one – Houmes Mar 06 '22 at 11:17