Tutoriel : Installer Python sur Windows, Mac & Linux
Windows
- Va sur python.org/downloads/windows
- Clique sur "Download Python 3.x.x"
- Ouvre le fichier téléchargé (.exe)
- Coche la case
Add Python to PATH - Clique sur
Install Now - Ouvre l’invite de commandes et tape
python --versionpour vérifier l'installation
mac
- Va sur python.org/downloads/macos
- Télécharge le fichier
.pkg - Ouvre-le pour lancer l'installation
- Suis les étapes de l’installeur
- Ouvre le terminal et tape
python3 --versionpour verifier l installation et la version. Si tout se passe bein ça devrait afficher 3.13
Linux (Ubuntu, Debian, ...)
- Ouvre un terminal
- Installe Python avec la commande :
sudo apt update && sudo apt install python3 - Vérifie l'installation avec :
python3 --version
Sur d'autres systemes (Arch, Fedora…), utilise le gestionnaire de paquets correspondant.
Après avoir installé python tu peux commencer à coder!