This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In any GNU/Linux distribution, which have a package manager on board, is recommended to install software by using "packages". | |
Building from source | |
Step 1. GPG key | |
The first thing you need is generate a gpg key. | |
Package will be signed by this key. | |
Run this commands in your terminal: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
A script for parsing a flake8 error log and generating useful stats about the | |
errors in the code. | |
Author: Ben Lopatin (I think I wrote it, at least, no guarantee) | |
License: BSD | |
""" |