-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why pip fails to find package even though it is available on PyPI? #10545
Comments
Hi, I can confirm this bug using Windows, even when I just run
|
Verbose log would be very useful |
Here you go:
Looks like every version explicitly requires less than 3.9, not sure why though. |
Oh it's explicitly in the wheels metadata:
Which I guess comes from this line here: https://github.com/awslabs/aws-data-wrangler/blob/1.0.0/setup.py#L24 The package maintainers for some reason put an upper limit on the Python requirement. You either need to use an older Python, upgrade which version you depend on, or fork the package and change the requirements yourself. |
Merging this into #10421 then. |
Description
In a new machine (or new Python environment), when I try to install requirements from
pip install -r requirements.txt
I always getERROR: Could not find a version that satisfies the requirement awswrangler==1.0.0
(for a lot of packages, not only awswrangler).In that example,
requirements.txt
requires awswrangler to be in exact version 1.0.0. If you access https://pypi.org/simple/awswrangler/ you can get version 1.0.0Why this always happens? Is there any way to force download?
Expected behavior
Get all requirements installed with exact versions in TXT file.
pip version
21.2.4
Python version
3.9.7
OS
macOS Big Sur (11.6)
How to Reproduce
Output
Code of Conduct
The text was updated successfully, but these errors were encountered: