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.
Related
I want to install SoundRecongnition package but I'm getting the following error when I type: pip3 install SoundRecognition
"Could not find a version that satisfies the requirement SoundRecognition (from versions: )
No matching distribution found for SoundRecognition"
I tried upgrading the pip. Also tried using the --user tag but still facing the problem.
I'm using pip 19.0.3 version, python 3.7.0 version, and Pycharm as IDE.
ERROR: Could not find a version that satisfies the requirement speech_recognition (from versions: none)
ERROR: No matching distribution found for speech_recognition
just use
pip install SpeechRecognition
pip install SpeechRecognition
you just try above SpeechRecognition...i think sound recognition module not there in pip
There is no SoundRecongnition at PyPI (it is where from pip installs packages). What package do you mean? I cannot find it on the Net.
Do you mean SpeechRecognition?
pip install SpeechRecognition
I am trying to install the library toripchanger.
I did once:
C:\Users\Machintruc>pip install toripchanger
output:
Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger
You are using pip version 18.0, however version 19.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
So I updated pip:
C:\Users\Machintruc>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/d7/41/34dd96bd33958e52cb4da2f1bf0818e396514fd4f4725a79199564cd0c20/pip-19.0.2-py2.py3-none-any.whl (1.4MB)
100% |################################| 1.4MB 437kB/s
Installing collected packages: pip
Found existing installation: pip 18.0
Uninstalling pip-18.0:
Successfully uninstalled pip-18.0
Successfully installed pip-19.0.2
I tried again to install:
C:\Users\Machintruc>pip install toripchanger
output:
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date.
A future version of pip will drop support for Python 2.7.
Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger
I am not sure to upgrade Python will be usefull, besides I won't to debug all my scripts because I upgraded Python, 2020 is far away today.
No matching distribution found for toripchanger does mean it does not exist anymore anyway?
It exists, but the PyPi version only supports python3x. You can check out the relevant PyPi page. On the left there is an entry "Programming Language", which only lsits python::3. That is why your pip cannot find a version that matches your setup.
Consider using virtual environments if you need to use both python version on the same machine
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.
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
Why can't I install django-graphos? I have tried on Arch and Ubuntu and get this error:
pip install django-graphos
Downloading/unpacking django-graphos
Could not find a version that satisfies the requirement django-graphos (from versions: 0.0.1a0, 0.0.2a0)
Cleaning up...
No distributions matching the version for django-graphos
This is because the package has no version specified.
run this command instead:
pip install django-graphos==0.0.2a
Hope that helps!