Merge list & freeze commands #7157
Labels
C: freeze
'pip freeze' related
C: list/show
'pip list' or 'pip show'
state: needs discussion
This needs some more discussion
type: enhancement
Improvements to functionality
UX
User experience related
What's the problem this feature will solve?
Simplify pip CLI interface.
Currently,
list
andfreeze
are two commands that perform almost the same role.pip freeze
andpip list
output the same kind of information on the installed packages but with different format and different available options.As an example,
pip freeze --all
should produce the same output aspip list --format=freeze
(except for editable installs...).Describe the solution you'd like
Both commands would be merged into one (
list
) andfreeze
would simply be an alias forlist --format=freeze
.This should lower the maintenance and simplify our CLI interface.
Alternative Solutions
Statu quo.
The text was updated successfully, but these errors were encountered: