Skip to content

Instantly share code, notes, and snippets.

@Masynchin
Last active July 4, 2022 20:32
Show Gist options
  • Save Masynchin/4f3938b4e953f0aa3e832a7d9005b01d to your computer and use it in GitHub Desktop.
Save Masynchin/4f3938b4e953f0aa3e832a7d9005b01d to your computer and use it in GitHub Desktop.
Fetch all installed flake8 plugins
# Just names
pip list | awk '/^flake8/{print $1}'
# With version
pip list | awk '/^flake8/{print $1 "==" $2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment