You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 1. Ouvrir un terminal dans le dossier du projetcd"C:\Users\ton-nom\Desktop\MonProjet"# 2.Créer un environnement virtuel# Sous Windows :
python -m venv venv
venv\Scripts\activate
# Sous macOS / Linux :# python3 -m venv venv# source venv/bin/activate# 3.Installer les bibliothèques nécessaires
pip install langchain langchain-core langchain-community langchain-ollama chromadb pandas
# 4.Lancer le projet
python main.py
# 5.Vérifier / Télécharger un modèle Ollama# Lister les modèles disponibles
ollama list
# Télécharger un modèle (exemple : LLaMA3)
ollama run llama3