Un génie rebondissant dans un monde oriental
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
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. ```