-
Notifications
You must be signed in to change notification settings - Fork 0
development
Julien edited this page Jun 11, 2019
·
12 revisions
Caractéristiques :
- utilisation de l'API en QA (tenir compte du certificat SSL)
Installer Python :
- une version de Python compatible (versions > 3.6+)
- de préférence en 64 bits
Créer un environnement virtuel :
# environnement virtuel
python -m venv .venv_dev
.venv_dev/Scripts/activate
# MAJ pip et setuptools
python -m pip install -U pip setuptoolsInstaller les dépendances :
# dépendances
# avec pip
python -m pip install -U -r .\requirements.txt
python -m pip install -U -r .\tests\requirements_test.txt
# ou avec pipenv
python -m pip install -U pipenv
python -m pipenv install --devDepuis la racine du dossier :
# installer le projet en mode éditable
# cf. https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs)
pip install -e .Isogeo© - Isogeo Python SDK - wiki