web-dev-qa-db-fra.com

Installation de Pygame pour Python 3.6.0

J'utilisais Python 3.5.2 avec Pygame 1.9.2 et tout fonctionnait bien. Ensuite, j'ai décidé d'essayer Python 3.6.0 récemment publié avec une nouvelle installation, mais quand j'ai essayé de réinstaller Pygame avec ceci:

pip install pygame

il a retourné ce qui suit:

Collecting pygame
  Downloading pygame-1.9.2.tar.gz (3.0MB)
    100% |████████████████████████████████| 3.0MB 292kB/s
    Complete output from command python setup.py Egg_info:


    WARNING, No "Setup" File Exists, Running "config.py"
    Using WINDOWS configuration...

    Path for SDL not found.
    Too bad that is a requirement! Hand-fix the "Setup"
    Path for FONT not found.
    Path for IMAGE not found.
    Path for MIXER not found.
    Path for PNG not found.
    Path for JPEG not found.
    Path for PORTMIDI not found.
    Path for COPYLIB_tiff not found.
    Path for COPYLIB_z not found.
    Path for COPYLIB_vorbis not found.
    Path for COPYLIB_ogg not found.

    If you get compiler errors during install, doublecheck
    the compiler flags in the "Setup" file.


    Continuing With "setup.py"
    Error with the "Setup" file,
    perhaps make a clean copy from "Setup.in".
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\rodri\AppData\Local\Temp\pip-build-328x7lme\pygame\setup.py", line 165, in <module>
        extensions = read_setup_file('Setup')
      File "c:\python\lib\distutils\extension.py", line 171, in read_setup_file
        line = expand_makefile_vars(line, vars)
      File "c:\python\lib\distutils\sysconfig.py", line 410, in expand_makefile_vars
        s = s[0:beg] + vars.get(m.group(1)) + s[end:]
    TypeError: must be str, not NoneType

    ----------------------------------------
Command "python setup.py Egg_info" failed with error code 1 in C:\Users\rodri\AppData\Local\Temp\pip-build-328x7lme\pygame\
3
Rodrigo Nascimento

J'ai résolu ceci en utilisant la commande:

pip install wheel

puis téléchargé pygame‑1.9.2‑cp36‑cp36m‑win_AMD64.whl à partir de ici (je suis sous Windows 64 bits). J'ai copié le fichier dans mon dossier Python puis utilisé

pip install pygame‑1.9.2‑cp36‑cp36m‑win_AMD64.whl

et cela a fonctionné.

7
Rodrigo Nascimento

J'ai récemment installé PyGame et PyQt5 sur un ensemble de machines Windows à l'école. J'ai désinstallé le Python existant (2.4). Ensuite, j'ai utilisé le programme d'installation de Python.org pour 3.6.1. J'ai coché la case pour mettre Python dans le PATH et j'ai utilisé l'installation personnalisée pour l'installer pour tous les utilisateurs. Cela a bien fonctionné.

Ensuite, pour installer pygame et PyQt5, j’ai simplement ouvert une invite de commande Windows (en tant qu’administrateur) et lancé l’exécution

Ils ont tous deux bien fonctionné et l’ensemble de l’installation fonctionne bien.

0
Tim