Tensorflow will not install - python

Trying to install tensorflow but no matter the method an error installing it always shows
I have tried installing the whl and I have installed the virtualenv
C:\Windows\system32>pip3 install --upgrade tensorflow
I get this error:
Collecting tensorflow ERROR: Could not find a version that satisfies
the requirement tensorflow (fro m versions: none) ERROR: No matching
distribution found for tensorflow
I would hope that tensorflow would install from any of the methods I have tried but I have gotten an incompatible whl error and the error shown above.

Try this:
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
I've used this before. Tell me if it works! =)

You may try to install using link in anaconda -
https://anaconda.org/conda-forge/tensorflow

Had the same problem till I figured out that you need python 3.5.2 for tensorflow, could not install it in 3.6

Related

Tensorflow dataset download in Colab using Python 3.8+ for waymo data set

I am trying
!pip3 install waymo-open-dataset
in Colab, but I get
ERROR: Could not find a version that satisfies the requirement waymo-open-dataset (from versions: none)
ERROR: No matching distribution found for waymo-open-dataset
Try this.
Note: you should put your dependencies installation in another cell as it will help you narrow down problems that is related to python code or dependencies installation
!pip install --upgrade pip
!pip install waymo-open-dataset-tf-2-0-0==1.0.1 --user

Problems installing tensorflow on Windows 10

i have been trying to install TensorFlow on my Win10 machine using pip, I have never had a problem using pip before but for some reason when I run pip install tensorflow with pip version 21.0.1 I get the following error
ERROR: Could not find a version that satisfies the requirement tensorflow
ERROR: No matching distribution found for tensorflow
I have tried to install using the --user tag but same problem occurs, i got the install command from the official website https://www.tensorflow.org/install,
if anyone knows what is causing pip to think the package doesn't exist any help appreciated.
Tensorflow supports only Python 3.5-3.8 versions. That might cause a problem.
You can read more at a similar post about that error; Could not find a version that satisfies the requirement tensorflow
I suggest you to use virtual environments created with Conda.
https://docs.anaconda.com/anaconda/install/windows/
If you use Conda, you can specify required Python version, pip libraries to that env and use it from anywhere in your OS.

Issue with installing ethnicolr package

When I try to install ethnicolr, received an error
"Could not find a version that satisfies the requirement tensorflow==1.12.3(from ethniclor)"
Current version of tensorflow is 1.14, uninstalled it, and tried to install the version of 1.12.3 but get error complaining that could not find a version.
is there anyway to install the package?
One solution is to install a previous version of ethnicolr
pip install ethnicolr==0.2.0
https://github.com/appeler/ethnicolr/issues/16

PIP Won't install Tensorflow

I'm trying to install tensorflow with pip, but every time I try I get this:
pip3 install Tensorflow
Collecting Tensorflow
ERROR: Could not find a version that satisfies the requirement Tensorflow
(from versions: none)
ERROR: No matching distribution found for Tensorflow
What do I do?
(I'm running Pip 19.2.2 on Windows 7 x64 if this info is needed)
Try python3 -m pip install tensorflow
Also tensorflow only supports 64 bit version Python, check that you have installed the correct version.
Also, often times its easier to use a slightly older Python version together with Tensorflow. I have found installations of e.g. Python 3.6.x + tf to work more smoothly than 3.7.x.
Run
pip install --upgrade tensorflow

Python 3.5 virtualenv : pip3 installing tensorflow fails

I am running Mac OS 10.5 (Yosemite) and I just setup a virtualenv with python 3.5 to play a little bit with tensorflow. The virtualenv is setup correctly. However, I cannot install tensorflow. I always get the following error messages:
(tensorflow) Tom#MBP:~/tensorflow$ pip3 install --upgrade tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
or this error:
(tensorflow) Tom#MBP:~/tensorflow$ pip3 install --upgrade \
> https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.5.0-py2-none-any.whl
tensorflow-1.5.0-py2-none-any.whl is not a supported wheel on this platform.
I actually do not understand what is happening here.
Any help is appreciated. Thanks
Try upgrading pip to use latest version and see if it helps:
pip3 install --upgrade pip

Categories