Pip Install will not install versions greater than or equal to 2.0 after 2.0.1 release
See original GitHub issueSummary.
Attempting to install pyjwt version >= 2.0 results in an error.
Expected Result
Installation of the 2.0.1 version
Actual Result
The following error:
Could not find a version that satisfies the requirement PyJWT>=2.0.0
Reproduction Steps
pip install "PyJWT>=2.0.0"
First discovered installing social-auth-core>=3.3.0 which has PyJWT as a dependency.
See SPDX online tools issue 284 for the original error details.
System Information
Both on Ubuntu and Windows within a virtual environment.
Python version 2.7.
Pip version 20.0.2.
I noticed that version 2.0.1 was release just 4 hours ago - perhaps this is related?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:7 (1 by maintainers)
Top Results From Across the Web
How to pip install a package with min and max version range?
You can do: $ pip install "package>=0.2,<0.3". And pip will look for the best match, assuming the version is at least 0.2, and...
Read more >New resolver takes a very long time to complete #9187 - GitHub
One of CI jobs for Weblate is to install minimal versions of dependencies. ... If pip is taking longer to install packages, read...
Read more >Dependency Resolution - pip documentation v22.3.1
The process of determining which version of a dependency to install is known as dependency resolution. This behaviour can be disabled by passing...
Read more >How to pin a package to a specific major version or lower
Let's say we want to pin pandas to 2.* or lower. How can we achieve this? pandas<=2.*: Installs the latest version in 1.*,...
Read more >pip-licenses - PyPI
Dump the software license list of Python packages installed with pip. ... Note: If you are still using Python 2.7, install version less...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@lucasvazq Thanks for the tip - that worked.
@goneall Yes, you can install first
social-auth-core==4.0.2
, and then installsocial-auth-app-django