I installed tensorboard 1.9.0 by sudo -H pip install tensorboard-1.9.0-py2-none-any.whl
and use pip list can see it:
>> pip list| grep tensorboard
tensorboard 1.9.0
but when I try to install tensorflow
sudo -H pip install tensorflow-1.8.0-cp27-cp27mu-manylinux1_x86_64.whl
it turns to collecting tensorboard:
Collecting tensorboard<1.9.0,>=1.8.0 (from tensorflow==1.8.0)
Could not find a version that satisfies the requirement
tensorboard<1.9.0,>=1.8.0 (from tensorflow==1.8.0) (from versions: 1.0.0a3,
1.0.0a4, 1.0.0a5, 1.0.0a6)
No matching distribution found for tensorboard<1.9.0,>=1.8.0 (from
tensorflow==1.8.0)
I wonder why this happens and how could I install tensorflow offline?
You installed the wrong version of tensorboard. You installed version 1.9.0. But when installing tensorflow it is looking for tensorboard<1.9.0,>=1.8.0 which is not satisfied by 1.9.0.
Download and install tensorboard 1.8 and it should work
Related
Unable to install tensonflow with Pip.
pip install tensorflow==1.2.1
Collecting tensorflow==1.2.1
Could not find a version that satisfies the requirement tensorflow==1.2.1 (from versions: )
No matching distribution found for tensorflow==1.2.1
Try this:
pip install --user install tensorflow==1.2.1.
You might need to use pip3 instead of pip if using python 3.
Pip is not installing TensorFlow Nightly. Is there another way I can install it? Here is what I tried.
Louis-MacBook-Pro:~ yelouis$ python3 -m pip install tf-nightly
Collecting tf-nightly
Could not find a version that satisfies the requirement tf-nightly (from versions: )
No matching distribution found for tf-nightly
Louis-MacBook-Pro:~ yelouis$ pip install tf-nightly
Collecting tf-nightly
Could not find a version that satisfies the requirement tf-nightly (from versions: )
No matching distribution found for tf-nightly
Update: I have downloaded the file and trying to use the path to have pip install it. Here are the results and it is still not working.
You could try downloading tf-nightly from here, then install using pip install <path/to/package>.whl.
Make sure you download the one that is compatible with your Python version.
I'm trying to install TensorFlow via pip3 on my Mac. Whenever I run the command pip3 install tensorflow or pip3 install --upgrade tensorflow I receive the same error...
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
Python version: 3.7.0
Pip version: 18.1
Is there another way I could go about installing?
Aren't you using 'notebook'?
'Anaconda' and 'notebook' are best to work with python and ML packages. You shouldn't have trouble with conda.
Try just "pip install tensorflow"
When I do pip install tensorflow, it says that there is no matching distribution. I already updated pip.
(tfenv)pi#raspberrypi:~/Downloads/opencv-3.3.0-source/build $ pip install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
(tfenv)pi#raspberrypi:~/Downloads/opencv-3.3.0-source/build $ pip --version
pip 10.0.1 from /home/pi/.conda/envs/tfenv/lib/python3.4/site-packages/pip (python 3.4)
I get the same problem when I try install opencv through pip. I tried this command on another raspberry pi and everything works fine.
You need to have the latest version of pip in order to install tensorflow or openCV. You can upgrade pip using the below command:
python -m pip install --upgrade pip
After upgrading Pip, it should work fine.
I am installing tensorflow on a new virtualenvironment. When I try to pip install tensorflow I get the following message
Collecting tensorflow-gpu
Could not find a version that satisfies the requirement tensorflow-gpu (from
versions: )
No matching distribution found for tensorflow-gpu
I am using macOS yosemitie and python 3.6
I've tried the following:
Installing with python 3.5
Going to pypi, downloading the wheel and using pip on that
In addition, also trying to use the --use wheel option with pip
git cloning the tensorflow repo and installing with tensorflow/tools/pip_package/setup.py
So far nothing has worked. Any insight as to why and what I could do?
Note: As of version 1.2, TensorFlow no longer provides GPU support on macOS.
run the following without -gpu:
pip install --upgrade tensorflow # for Python 2.7
pip3 install --upgrade tensorflow # for Python 3.n
official instructions can be found here: Installing TensorFlow on macOS