-
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
Add --path
option to pip list
#6580
Conversation
--path
option to pip list
--path
option to pip list
This makes `pip list` consistent with `pip freeze` which also supports listing packages in arbitrary file paths.
--path
option to pip list
--path
option to pip list
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
/cc @xavfernandez since he'd originally suggested this. :) |
Thanks @lkollar 👍 |
Thanks for doing this. I noticed though that the option definition and option checking added in |
That is a very good point @cjerdonek. I will submit a new PR to consolidate the code into |
Great, thank you, @lkollar! I'm happy to review if others don't get to it before me. |
This makes
pip list
consistent withpip freeze
which also supports listing packages in arbitrary file paths.Closes: #6551