On 28/07/13 19:35, John Ladasky wrote: > Hi folks, > > I'm new to pyglet. I'm looking for a Python GUI that I can use to teach > game programming to students. It's 2013. I've already gotten my > students working with Python 3. I refuse to complicate their education > with Python 2. Supposedly, pyglet 1.2 alpha 1 will work on Python 3, > automatically running 2to3 on the core package code (if not the > examples) when you install it using Python3. It apparently did so, > silently. Still, I have had trouble getting everything to work.
Hello, I recommend you to use the repo version as it includes some fixes for Python 3. If you have Mercurial installed you can: hg clone https://code.google.com/p/pyglet/ It's a shame we can't get a tarball with HEAD from Google Code (or at least I don't know how to do it). You can build a zip yourself for your students with: python setup.py sdist --formats=zip (results on _dist/) Currently the zip name will be 1.2alpha1; you can change it with: mv _dist/pyglet-1.2alpha1.zip _dist/pyglet-1.2alpha1-`hg log -l1 --template "{node|short}"`.zip So you'll get something like: pyglet-1.2alpha1-b210ac020f01.zip And track in that way which HEAD snapshot was packaged. Regards, Juan -- You received this message because you are subscribed to the Google Groups "pyglet-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyglet-users. For more options, visit https://groups.google.com/groups/opt_out.
