The title says it all. I do see similar questions, someone suggested about http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame, but all the pygame downloadable files are in .whl format which I have no idea how to run on Windows 7. I tried "cd [directory] > pip install [filename]" without success.
相关问题
- Flush single app django 1.9
- How to stop a dbus gobject loop
- Python's difflib SequenceMatcher speed up
- Getting 'Missing required field: member' w
- What can be the maximum “POST” size I can have?
相关文章
- Is there a size limit for HTTP response headers on
- Does there exist empty class in python?
- ImportError: No module named twisted.persisted.sty
- Get a header with Python and convert in JSON (requ
- python unit testing methods inside of classes
- Requiring tensorflow with Python 2.7.11 occurs Imp
- How to save captured image to disk, using Pygame
- Generate Fortran subroutine with SymPy codegen for
You are doing right. Please just check python command it should display win64
if output is win32 install pygame‑1.9.2a0‑cp34‑none‑win32.whl
This worked from me (Windows 7, python 2.7, 64 bit):
I downloaded the file
pygame-1.9.2a0-cp27-none-win_amd64.whl
from http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame as well.In general,
whl
files are installed withpip
:Open the .whl file through WinRar and just extract the contents(you will find 3 folders) into your Python folder. For example : if you had installed python 2.7.3 in C:, then your directory to extract will be C:\Python27