# Installation There are several ways to install flitz. The most common option is to use pip. ## pip flitz requires Python 3.10+ to run. Typically Python comes with `pip`, a package installer. Using it you can install flitz: ```bash pip install flitz ``` If you are not a super-user (a system administrator / root), you can also just install flitz for your current user: ```bash pip install --user flitz ``` ## Python Version Support | Python | 3.11 | 3.10 | 3.9 | 3.8 | 3.7 | 3.6 | 2.7 | | ---------------------- | ---- | ---- | --- | --- | --- | --- | --- | | flitz | YES | YES | | | | | | ## Development Version In case you want to use the current version under development: ```bash pip install git+https://github.com/MartinThoma/flitz.git ```