Can Pygame run with 64bit Python 2.7?

10,180

Solution 1

Basically, the answer is yes. I know because I had the same problem.

Once you have installed Python 2.7 on your 64-bit machine, you need to visit this web site, which is linked from the official pygame website:

http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame

On a Windows machine, for example, you download a self installing file, which puts the pygame module in your site-package package folder within the Python directory.This directory can be found in the LIB folder.

enter image description here

It is really as simple as that.

Solution 2

This site has a 64bit version of PyGame on it.

Share:
10,180
Mercutionario
Author by

Mercutionario

Updated on June 04, 2022

Comments

  • Mercutionario
    Mercutionario about 2 years

    I know it's advised to uninstall 64bit Python and use the win32 version to run Pygame, but I just wondered if it was possible to run it on 64bit nonetheless.

  • Mercutionario
    Mercutionario over 11 years
    Thank you, I'll see if I can try this out !