'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.
Solution 1:[1]
Could you please verify the below requirements:
- Is your pc 64 bits, the python and os used should be 64 bits.
- $ sudo pip3 install setuptools --upgrade
- 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]
Solution 2:[2]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | TFer |
Solution 2 | Szymon Palucha |