You can install FilterPy using several methods depending on your environment:
Using pip
For most modern Python distributions:
pip install filterpy
To install the bleeding edge version directly from GitHub:
pip install git+https://github.com/rlabbe/filterpy.git
Using Anaconda
Install from the conda-forge channel:
conda config --add channels conda-forge
conda install filterpy
From Source
Clone the repository and run the setup script:
git clone http://github.com/rlabbe/filterpy
cd filterpy
python setup.py install