pythonpython-3.xpippackage-managers

Pip could not find a version that satisfies the requirement


I'm having problems with installing a package using pip. I tried:

pip install jurigged

Causing these errors:

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

I checked if pip was up to date which was the case. I'm on Python 3.7.4.

Does anyone know a solution to this problem?


Solution

  • From PyPI, jurigged is only supported as of Python >= 3.8 (see also here)

    pip doesn't find anything to install because you do not meet the requirements.

    Upgrade to Python >= 3.8 and do the same: pip install jurigged