Title basically says it all. How can I tell pip freeze to ignore certain packages, like pylint and pep8, and their dependencies?
pip freeze
pylint
pep8
on windows with powershell:
$exclude = 'pylint', 'pep8' pip freeze | Where-Object { $exclude -notcontains $_ } | ForEach-Object { pip install --upgrade $_ }