Reputation: 71
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
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
Reputation:
Could you please verify the below requirements:
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