Installation

Git

It is recommended to clone the project with git. So you will need to install git for your specific operating system. Afterwards you can clone the project like so:

git clone https://github.com/patrickhener/puffyCV.git

Python

As the first requirements you will need Python3 and Python3-Pip. You might wanna refer to the official documentation on how to install Python and pip for your specific operating system.

Virtual Environment

It is recommended to use a virtual environment to keep your pip clean. If you do not want to use one just continue with the next section.

To install and activate the virtual environment do the following:

pip install --user virtualenv
python -m venv ./venv
. venv/bin/activate

Install python package requirements

To install the requirements you can use pip again like shown in the code block below. Keep in mind that you can do this either within a virtual environment or not.

pip install --user -r requirements.txt

You should no have everything in place to calibrate and run puffyCV.