Installation¶
diepvries
is a Python library with very few dependencies, packaged
with pip. The recommended way to install it is through a Python
wheel, by pointing your dependency manager to diepvries
.
diepvries
releases are versioned according to Semantic versioning. This means you can use the compatibility
operator when specifying the version you want to use.
Python versions¶
At the moment, diepvries
is compatible with Python 3.8 and 3.9.
Installation with pipenv¶
pipenv install diepvries
Installation with poetry¶
poetry add diepvries
Installation with bare pip¶
pip install diepvries
Installing a development version¶
This installation method should be used when developing on diepvries
,
not for regular use.
git clone git@github.com:PicnicSuperMarket/diepvries.git
cd diepvries
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install -e .