Re: 2to3 translation problem

2015-12-12 Thread Laura Creighton
In a message of Sat, 12 Dec 2015 20:24:10 +, Tony van der Hoff writes: >On 12/12/15 17:54, Laura Creighton wrote: >> In a message of Sun, 13 Dec 2015 04:50:43 +1100, Chris Angelico writes: >>> On Sun, Dec 13, 2015 at 4:30 AM, Tony van der Hoff >>> wrote: Thanks, Laura, and others who hav

Re: 2to3 translation problem

2015-12-12 Thread Tony van der Hoff
On 12/12/15 17:54, Laura Creighton wrote: In a message of Sun, 13 Dec 2015 04:50:43 +1100, Chris Angelico writes: On Sun, Dec 13, 2015 at 4:30 AM, Tony van der Hoff wrote: Thanks, Laura, and others who have replied. You're right; python-3-pygame exists in unstable, but has not yet made it to j

Re: 2to3 translation problem

2015-12-12 Thread Terry Reedy
On 12/12/2015 12:30 PM, Tony van der Hoff wrote: Thanks, Laura, and others who have replied. You're right; python-3-pygame exists in unstable, but has not yet made it to jessie, even in backports. So, I'll stick with python 2.7 for the time being; really no hardship :) pygame itself was porte

Re: 2to3 translation problem

2015-12-12 Thread Laura Creighton
In a message of Sun, 13 Dec 2015 04:50:43 +1100, Chris Angelico writes: >On Sun, Dec 13, 2015 at 4:30 AM, Tony van der Hoff wrote: >> Thanks, Laura, and others who have replied. You're right; python-3-pygame >> exists in unstable, but has not yet made it to jessie, even in backports. >> >> So, I'l

Re: 2to3 translation problem

2015-12-12 Thread Chris Angelico
On Sun, Dec 13, 2015 at 4:30 AM, Tony van der Hoff wrote: > Thanks, Laura, and others who have replied. You're right; python-3-pygame > exists in unstable, but has not yet made it to jessie, even in backports. > > So, I'll stick with python 2.7 for the time being; really no hardship :) The easies

Re: 2to3 translation problem

2015-12-12 Thread Tony van der Hoff
ython 3.4 can't find the library, whilst python 2.7 can. How do I track down/fix the missing dependency. This isn't a 2to3 translation problem. You've installed pygame under 2.7 at some point, repeat the process for 3.4. I've no idea how you'd do that on Debian Jessie

Re: 2to3 translation problem

2015-12-12 Thread Laura Creighton
File "ppm304.py", line 9, in >>>> import pygame >>>> ImportError: No module named 'pygame' >>>> >>>> So, python 3.4 can't find the library, whilst python 2.7 can. >>>> How do I track down/fix the missin

Re: 2to3 translation problem

2015-12-12 Thread Laura Creighton
game >>> ImportError: No module named 'pygame' >>> >>> So, python 3.4 can't find the library, whilst python 2.7 can. >>> How do I track down/fix the missing dependency. >> >> This isn't a 2to3 translation problem. You'

Re: 2to3 translation problem

2015-12-12 Thread Peter Otten
#x27;pygame' >>> >>> So, python 3.4 can't find the library, whilst python 2.7 can. >>> How do I track down/fix the missing dependency. >> >> This isn't a 2to3 translation problem. You've installed pygame under >> 2.7 at some point, re

Re: 2to3 translation problem

2015-12-12 Thread Mark Lawrence
issing dependency. This isn't a 2to3 translation problem. You've installed pygame under 2.7 at some point, repeat the process for 3.4. I've no idea how you'd do that on Debian Jessie but on Windows it'd be "pip3.4 install pygame". Thanks, Mark, for the pointer.

Re: 2to3 translation problem

2015-12-12 Thread Tony van der Hoff
error : Traceback (most recent call last): File "ppm304.py", line 9, in import pygame ImportError: No module named 'pygame' So, python 3.4 can't find the library, whilst python 2.7 can. How do I track down/fix the missing dependency. This isn't a 2to3 translat

Re: 2to3 translation problem

2015-12-12 Thread Mark Lawrence
): File "ppm304.py", line 9, in import pygame ImportError: No module named 'pygame' So, python 3.4 can't find the library, whilst python 2.7 can. How do I track down/fix the missing dependency. This isn't a 2to3 translation problem. You've installed pyga

2to3 translation problem

2015-12-12 Thread Tony van der Hoff
Debian Jessie, python 2.7; python 3.4 I have an application, using pygame for graphics, that works fine under python2.7. I have run it through 2to3, but when running the result under python 3.4, I get the error : Traceback (most recent call last): File "ppm304.py", line 9, in import py