pyflakes-3.7
passive checker of Python 3 programs - Python modules
Install
- All systems
-
curl cmd.cat/pyflakes-3.7.sh
- Debian
-
apt-get install python3-pyflakes
- Ubuntu
-
apt-get install python3-pyflakes
- Kali Linux
-
apt-get install python3-pyflakes
- Fedora
-
dnf install python3-pyflakes
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install python3-pyflakes
- Raspbian
-
apt-get install python3-pyflakes
- Dockerfile
- dockerfile.run/pyflakes-3.7
python3-pyflakes
passive checker of Python 3 programs - Python modules
Pyflakes is program to analyze Python programs and detect various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster. Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style. This is the Python 3 library version.