www tutorial org online oficial mac library game docs python-3.x pygame

python 3.x - tutorial - Instalación de Pygame para Python 3.6.0



python game library (2)

Estaba usando Python 3.5.2 con Pygame 1.9.2 y todo funcionaba bien. Entonces decidí probar el recientemente lanzado Python 3.6.0 con una nueva instalación, pero cuando traté de reinstalar Pygame con esto:

pip install pygame

devolvió lo siguiente:

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/


Recientemente instalé PyGame y PyQt5 en un conjunto de máquinas con Windows en la escuela. Desinstalé el Python existente (2.4). Luego usé el instalador de Python.org para 3.6.1. Marqué la casilla para poner Python en la RUTA y usé la instalación personalizada para instalarla para todos los usuarios. Eso funcionó bien.

Luego, para instalar pygame y PyQt5, simplemente abrí un símbolo del sistema de Windows (como administrador) y ejecuté "pip3 install pygame" y luego "pip3 install pyqt5"

Ambos funcionaron bien y toda la instalación funciona bien juntos.


Lo resolví usando el comando:

pip install wheel

y luego descargué pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl desde aquí (estoy usando un Windows de 64 bits). Copié el archivo a mi carpeta de Python y luego usé

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

Y funcionó.