Un génie rebondissant dans un monde oriental
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 449 B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
123456789101112131415161718192021
  1. # Aladdin
  2. Un génie rebondissant dans un monde oriental
  3. pour faire fonctionner en environnement virtuel sous linux :
  4. ```bash
  5. python3 -m virtualenv env
  6. . env/bin/activate
  7. pip install pygame
  8. pip install --no-deps pgzero
  9. python aladdin.py
  10. ```
  11. sous windows (vous devez avoir installé virtualenv avec `pip install virtualenv`):
  12. ```powershell
  13. virtualenv env
  14. .\env\Scripts\activate
  15. pip install pygame
  16. pip install --no-deps pgzero
  17. python aladdin.py
  18. ```