Installation

Installation de PyPI

C’est la façon « régulière » d’installer.

python -m venv venv
source venv/bin/activate
pip install -U setuptools pip wheel
pip install transpolibre

Source Installer

Pour installer à partir du dépôt de code source.

git clone https://spacecruft.org/deepcrayon/transpolibre
cd transpolibre/
python -m venv venv
source venv/bin/activate
pip install -U setuptools pip wheel
pip install -e .

Développement Installation

Pour l’installation en mode développement.

git clone https://spacecruft.org/deepcrayon/transpolibre
cd transpolibre/
python -m venv venv
source venv/bin/activate
pip install -U setuptools pip wheel
pip install -e .[dev]