Python3.6 can't install latest version of yoyo-migrations - python

I want to install the latest version of yoyo-migrations module.
Based on https://pypi.org/project/yoyo-migrations/ the latest version is 5.1.0 and when I try to install it using pip install yoyo-migrations it installs the v5.0.5 and when using this command pip install yoyo-migrations==5.1.0 it gives me this error.
Collecting yoyo-migrations==5.1.0 Could not find a version that
satisfies the requirement yoyo-migrations==5.1.0 (from versions: 1, 2,
3, 4, 4.1.0, 4.1.1, 4.1.2, 4.1.3, 4.1.4, 4.1.5, 4.1.6, 4.2.0, 4.2.1,
4.2.2, 4.2.3, 4.2.4, 4.2.5, 5.0.0, 5.0.1, 5.0.2, 5.0.3, 5.0.4, 5.0.5) No matching distribution found for yoyo-migrations==5.1.0

If you look at the files for that version here you will see that the only available file for that version is
yoyo_migrations-5.1.0-py2-none-any.whl (42.1 kB)
The py2 part indicates that this wheel is only good for python2, and not your version of python3, so pip is correct when it tells you that it can't find a suitable version. However, the version you're trying to download is only a few hours old, perhaps there will be additional files there soon.

Or you can install the develop version.
pip install -e hg+https://bitbucket.org/ollyc/yoyo#egg=yoyo-migrations

Related

Pip could not find a version that satisfies the requirement

I'm having problems with installing a package using pip. I tried :
pip install wx
Causing these errors :
ERROR: Could not find a version that satisfies the requirement wx (from versions: none)
ERROR: No matching distribution found for wx
I checked if pip was up to date which was the case. I'm on Python 3.10.6
Does anyone know a solution to this problem?
Try to specify an older version of wx, or if there is documentation on the package, read the requirements, maybe you need an older or newer version of python. Try also
pip install wxPython or https://pypi.org/project/wxPython/

ERROR: Could not find a version that satisfies the requirement tensorflow-directml

I tried to install:
pip install tensorflow-directml
from directml on my Windows 10. I have an intel GUP and I was hoping I could use it. But I got the error:
ERROR: Could not find a version that satisfies the requirement tensorflow-directml (from versions: none)
ERROR: No matching distribution found for tensorflow-directml
Did I miss something?
EDIT:
I'm using python 3.8
Seems that the library supports Python 3.5, 3.6 and 3.7. Python3.8 is not supported at the moment (1). Is your pip installation connected to any of those versions? Try using pip --version to confirm to which Python version it is connected. In case that it shows a Python 2 version, try using pip3 install tensorflow-directml.

Could not find a version that satisfies the requirement preprocess-kgptalkie

I'm trying to add preprocess-kgptalkie in Python interpreter and I'm receiving these errors
Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at '/home/amel/PycharmProjects/pythonProject1/venv/bin/python'.
ERROR: Could not find a version that satisfies the requirement preprocess-kgptalkie (from versions: none)
ERROR: No matching distribution found for preprocess-kgptalkie
I'm using Python 3.6 and pip 21.2.4
There is no preprocess-kgbtalkie package on PyPI. However, I was able to find a GitHub repo here. Install it with
pip install git+ssh://git#github.com/kgptalkie/preprocess_kgptalkie.git

how to set up cudf for cuda 9.0

I have Cuda 9.0 version and
I have tried
pip install cudf==0.6.1
ERROR: Could not find a version that satisfies the requirement cudf==0.6.1 (from versions: none)
ERROR: No matching distribution found for cudf==0.6.1
Did you check the documentation?
https://github.com/rapidsai/cudf/blob/master/README.md
You should use conda to install it.
cudf 0.6.1 provides 2 wheels, Python 3.6 and Python 3.7, both for 64-bit Linux. No source code.
Source code and installation instructions are at https://github.com/rapidsai/cudf#installation. You can try to install using conda or compile from sources.

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