can not find a version when I install tensorflow [duplicate] - python

This question already has answers here:
TensorFlow not found using pip
(60 answers)
Closed 4 years ago.
this is my symptom:
[shankai#shankai ~]$ pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
my python : 3.7 64bit
os : ArchLinux

As listed at the pypi tensorflow page tensorflow is currently just available for Python 3.6, not for Python 3.7.
Either change your setup to Python 3.6 or build Tensorflow from source.

Try this (as suggested in this post):
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl
You should always check the official documentation of any library, module or free software you start using. You could have found this solution by checking the official documentation.

Related

Tensor flow won't install using PIP? "No matching distribution found for tensorflow" [duplicate]

This question already has an answer here:
Why isn't tensorflow installing?
(1 answer)
Closed last month.
Command Prompt screenshot of the error
Pip won't install Tensorflow, I am using 64bit Python 3.11.1. I have download the Cuda toolkit. Using a 1050ti as the GPU. How do i get this to install?
Downloaded Anaconda but that doesnt seem to help either. Tried updating Pip but it is on its latest release. All I get is the "No matching Distribution" Error
There is no offifical release of tensorflow that is compatible version with Python 3.11 (see PyPI). Use Python 3.10 instead.

How to upgrade python by using pip [duplicate]

This question already has answers here:
Could not find a version that satisfies the requirement tensorflow
(25 answers)
Closed 1 year ago.
I have a problem during installing tensorflow by using pip as below error message, any one tell me how can I fix that>
(base) C:\Users\Ahmed Yassin>pip 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
you might want to use the command git clone https://github.com/tensorflow/tensorflow.git
make sure that you have Git installed or download it from here https://git-scm.com/downloads
then run the command python setup.py install in the downloaded repository
Maybe you have some not suitable python version? Since the version list for tensorflow is empty.
What you see if run pip -V ?

Impossible to install tensorflow with pip python [duplicate]

This question already has answers here:
Could not find a version that satisfies the requirement tensorflow
(25 answers)
Closed 2 years ago.
hello i have a problem for installing tensorflow in python with pip: i'm using pycharm with python 3.8 but when i want to install tensorflow i always get the same error:
pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
i tried a lot of way to install it but it always crash, thanks for the help and sorry for my english it's not my first language
Have you tried using anaconda to install tenserflow? If you dont have anaconda go to https://www.anaconda.com/products/individual#Downloads to install it.

Install vtk with pip in Windows 10 [duplicate]

This question already has answers here:
No matching distribution found for vtk error
(4 answers)
Closed 2 years ago.
I tried installing vtk via pip in Windows, but it returned the following error.
python -m pip install vtk
ERROR: Could not find a version that satisfies the requirement vtk (from versions: none)
ERROR: No matching distribution found for vtk
Platform: Windows 10 (64 bit)
Python: 3.8 (64 bit)
pip: 20.1
It seems that python 3.8 is not supported in vtk yet.
https://gitlab.kitware.com/vtk/vtk/issues/17670
You should try lowering your python version to 3.6 before installing it.
the error in your case is because the latest version of vtk currently available on pypi 8.1.2 does not support python==3.8.
Try installing using python==3.7

Could not find a version that satisfies the requirement tensorflow (from versions:) No matching distribution found for tensorflow

While installing TensorFlow for my pc the following error appeared
Could not find a version that satisfies the requirement TensorFlow
(from versions:) No matching distribution found for TensorFlow
I have a 64-bit Widows operating system.
And Python 3.7.0 64-bit. I already updated my pip from version 10.0 to 18.0 still error remains the same.
Try with Python 3.6
From tensorflow, It doesn't show support for Python 3.7 yet. So maybe that's the issue. Although Python 3.7 has been released there are some Issues regarding the import because of the async variable, And even this thread shows the same solution. Is python 3.7.x supported with Tensorflow. So suggest you downgrade to Python 3.6 (64bit) and try again.
Refer the link for TensorFlow supported version for python
https://www.tensorflow.org/install/pip
upgrade pip to version 20
C:\>pip --version
pip 20.0.2 from c:\python37_64\lib\site-packages\pip (python 3.7)
then execute the following command
C:\>pip install https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow_cpu-2.1.0-cp37-cp37m-win_amd64.whl
or
C:\>pip install tensorflow
Then check for the packages installed
C:\>pip list
If you get this error:
ERROR: Could not find a version that satisfies the requirement tensorflow== (from versions: 0.12.1, ...)
ERROR: No matching distribution found for tensorflow==
Check your comment. If there is a space between '==' and TensorFlow version, you will get an error. Below you can see an example for installing Tensorflow 1.15.
Wrong one:
pip install tensorflow== 1.5
Correct one:
pip install tensorflow==1.15

Categories