On Sun, Mar 27, 2011 at 1:31 PM, Chuck <[email protected]> wrote: > Does anyone have familiarity with installing pygame? It seems simple and > straight forward enough, then why do I get the following from IDLE? This is > the 3.1 Windows pygame .msi install...
You're using pygame (probably pygame 1.9.1) built for python 3.1, but... > Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on ...you're using python 3.2. Don't do that. Your versions need to match. Since I don't see a version of pygame built for python 3.2 on windows, you'll need to either go back to python 3.1, or wait for someone to build pygame for 3.2. You might be able to build it yourself, but I don't know how convoluted that is. -- Jerry _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor
