From c90b6844c1fe864b840e5382c3e42eabdc9b7ab9 Mon Sep 17 00:00:00 2001 From: Lou BRODA Date: Mon, 12 Feb 2024 14:04:41 +0100 Subject: [PATCH] =?UTF-8?q?ADD=20:=20ajout=20des=20informations=20d'access?= =?UTF-8?q?ibilit=C3=A9=20dans=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index 216a542..9af6e2e 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,36 @@ Sommaire > **Warning**: Le déploiement n'a pas encore été fait. +Pour lancer la solution, il faut suivre les étapes suivantes : +- Clôner le répertoire du projet : [Code#0](https://codefirst.iut.uca.fr/git/lou.broda/BirdIdentifier.git) + +``` +git clone https://codefirst.iut.uca.fr/git/lou.broda/BirdIdentifier.git +``` + +- Changer la variable `DATABASE` avec le chemin de la base de données + +``` +# A CHANGER EN FONCTION DE VOTRE SYSTEME D'EXPLOITATION + +# Linux/Macos +DATABASE_PATH = "../database" <-- ICI +# Windows +# DATABASE_PATH = "..\\database" + +print(f"{DATABASE_PATH}") +``` + +- Installer les librairies nécessaires [Librairies](#libraries) +``` +pip install NOM_DE_LA_LIBRAIRIE +``` + +- Lancer le `notebook` du modèle nous intéressant +``` +Run All +``` + *******