installer_-_premiers_pas_pygame
Installer pygame
- Vous devez avoir déjà installé Python et Visual Studio Code sur votre ordinateur.
- Pour installer pygame : dans le terminal, tapez la ligne de commande py -m pip install -U pygame –user.
- Pour une mise à jour de pygame existant : même commande que ci-dessous
- Vous pouvez revenir à une version précédente de pygame : par exemple py -m pip install -U pygame==2.4.0 –user
- Pour vérifier si ça marche : py -m pygame.examples.aliens
Premier pas pygame
- créez une petite image au format png de 32 pixels sur 32. Ou téléchargez-là et mettez la dans votre dossier de projet : https://files.softicons.com/download/game-icons/super-mario-icons-by-sandro-pereira/png/32/Retro%20Mario.png
- renommez le fichier image en 'icon.png'
- dans votre dossier projet, créez un fichier test.py contenant :
import inspect import os import pygame cwd = os.getcwd() os.chdir(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))) # init game mode pygame.init() # game window icon icon_32x32 = pygame.image.load('icon.png') #.convert.alpha() pygame.display.set_icon(icon_32x32) pygame.display.set_caption('game test') pygame.display.set_mode((1280, 768)) # main loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False pygame.display.update() # end pygame.quit() os.chdir(cwd)
- Exécutez-le avec la flêche “run” en haut à droite de votre IDE Visual Studio Code
installer_-_premiers_pas_pygame.txt · Dernière modification : 2023/06/27 16:18 de tickleman