
Installer Python 3.10 sur le Microsoft Store : https://www.microsoft.com/store/productId/9PJPW5LDXLZ5?ocid=pdpshare
ouvrir Microsoft PowerShell en administrateur (très important)
tapez : Get-ExecutionPolicy
Restricted ou AllSigned **alors coller ca :**
Set-ExecutionPolicy Unrestricted et appuyez sur T puis entrertester les commandes :
git -v
python -V
Si pas d’erreurs, vous pouvez continuer.
Installer CUDA (Pilote de gestion pour la carte graphique)

nvcc --version renvoie bien quelque chosecd ~/Documents/
git clone <https://github.com/mathis-lambert/Python-Yolo-Wrapper-for-Unity-interactions.git> ApplicationInteractive
cd ./ApplicationInteractive/python
python -m venv venv
./venv/Scripts/activate
pip install -U .
pip uninstall torch torchvision torchaudio -y
pip install torch torchvision torchaudio --index-url <https://download.pytorch.org/whl/cu121>
mkdir models
cd models
wget <https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8s-pose.pt> -OutFile .\\yolov8s-pose.pt
wget <https://github.com/ultralytics/assets/releases/download/v8.1.0/yolov8l-pose.pt> -OutFile .\\yolov8l-pose.pt
echo "Installation réussie"
cd ~/Documents/ApplicationInteractive/python
./venv/Scripts/activate
pywui --model ./models/yolov8l-pose.pt --detect-method track --gpu --source 0 --conf 0.75 --filter --show