Mercutionario
Mercutionario

Reputation: 446

Can Pygame run with 64bit Python 2.7?

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.

Upvotes: 2

Views: 10204

Answers (2)

Timothy Lawman
Timothy Lawman

Reputation: 2312

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.

Upvotes: 8

UsAndRufus
UsAndRufus

Reputation: 397

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

Upvotes: 4

Related Questions