Install ========================================== | First of all, make sure you have Python 3.9 or higher: :: $ python3.9 --version ─╯ Python 3.9.4+ Okay! Let's create a folder for your new project. We will also create a virtual environment. Don't forget to activate your environment: :: $ mkdir && cd ─╯ $ python3.9 -m venv env $ source env/bin/activate Now we are ready to install the dependency from PyPI. :: $ pip install fast-online-packing | You are all set! Now checkout the :doc:`Quick Start ` for a short tutorial =).