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.
Related
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.
This question already has answers here:
Can't install time module
(12 answers)
Closed 3 months ago.
My python wont install Time Module it was asking me to update my pip to newest, and I did.
I receive this error:
ERROR: Could not find a version that satisfies the requirement time (from versions: none) ERROR: No matching distribution found for time
My python verstion is the latest. Python 3.11.0
Pip version : 22.3.1
It's all to date..
any ideias why?
Tried installing via CMD and pycharm packages additions.
Also updated python and pip. no sucess.
The time module is part of Python's standard library. It's installed along with the rest of Python, and you don't need to (nor can you!) install it with pip.
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 ?
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
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.