-
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
download
attempts to build instead of just downloading
#4239
Comments
That's a needed feature, setup.py is usually dynamic, egg info extracts metadata pip needs |
Do you mean a needed feature in that the capability should be added, or that it works as intended and I'm just using it wrong? |
It's how pip works, because we have to execute One key reason it needs the metadata is to get dependency information. It's possible that it would be OK to skip getting the metadata if |
If pkgA is provided as a sdist (i.e. If you don't need the dependencies, |
@xavfernandez But doesn't the issue description show |
Hmm you're right, I read too quickly :-/ |
Duplicate of #1884. |
Description:
I'm attempting to use the
download
option to download atar.gz
from pypi of the GDAL packageWhat I've run:
.venv/bin/pip download GDAL==2.1.0 --verbose --no-cache-dir --no-dependencies -d ./
Pip appears to be running
setup.py
which isn't what I want. I need to build the GDAL package with some optional flags that point to other header files.The text was updated successfully, but these errors were encountered: