Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100338

Re: 2to3 translation problem

Path csiph.com!news.mixmin.net!newsreader4.netcologne.de!news.netcologne.de!fu-berlin.de!uni-berlin.de!not-for-mail
From Mark Lawrence <breamoreboy@yahoo.co.uk>
Newsgroups comp.lang.python
Subject Re: 2to3 translation problem
Date Sat, 12 Dec 2015 16:56:05 +0000
Lines 37
Message-ID <mailman.181.1449939380.12405.python-list@python.org> (permalink)
References <dd2q2kFo7m4U1@mid.individual.net> <mailman.180.1449932994.12405.python-list@python.org> <dd30fqFpqmiU1@mid.individual.net>
Mime-Version 1.0
Content-Type text/plain; charset=windows-1252; format=flowed
Content-Transfer-Encoding 7bit
X-Trace news.uni-berlin.de ejkjbNEs9N3hHbcq4cqqHAh28HIsKR4uHs04d2KinESg==
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'from:addr:yahoo.co.uk': 0.05; 'importerror:': 0.05; 'subject:translation': 0.07; '2to3': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; 'python.': 0.11; '2.7': 0.13; 'mark,': 0.16; 'pygame': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'subject:2to3': 0.16; 'wrote:': 0.16; 'translation': 0.16; 'library,': 0.18; 'language': 0.19; '>>>': 0.20; 'windows': 0.20; 'lawrence': 0.22; 'subject:problem': 0.22; 'thanks,': 0.24; 'import': 0.24; '(most': 0.24; 'header:In-Reply-To:1': 0.24; 'module': 0.25; 'install': 0.25; "i've": 0.25; 'header:User- Agent:1': 0.26; 'installed': 0.26; 'header:X-Complaints-To:1': 0.26; 'van': 0.26; 'error': 0.27; 'idea': 0.28; 'fine': 0.28; 'pointer.': 0.29; "i'm": 0.30; "can't": 0.32; 'language.': 0.32; 'run': 0.33; 'point,': 0.33; 'traceback': 0.33; 'file': 0.34; 'running': 0.34; 'so,': 0.35; 'whilst': 0.35; "isn't": 0.35; 'problem.': 0.35; 'but': 0.36; 'should': 0.36; 'to:addr:python- list': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'received:org': 0.37; 'missing': 0.37; 'version': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.40; 'mark': 0.40; 'some': 0.40; 'charset:windows-1252': 0.62; 'effective': 0.63; 'our': 0.64; 'believe': 0.66; 'repeat': 0.67; '3.4': 0.84; 'apt-get': 0.84; "it'd": 0.84; 'pythonistas,': 0.84; 'belief': 0.91
X-Injected-Via-Gmane http://gmane.org/
X-Gmane-NNTP-Posting-Host 38.26.147.195.pool.dsl.daisyplc.net
User-Agent Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0
In-Reply-To <dd30fqFpqmiU1@mid.individual.net>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:100338

Show key headers only | View raw


On 12/12/2015 16:31, Tony van der Hoff wrote:
> On 12/12/15 15:09, Mark Lawrence wrote:
>> On 12/12/2015 14:42, Tony van der Hoff wrote:
>>> 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 <module>
>>>      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 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. I'm pretty sure I installed Pygame from
> Debian's repository, via apt-get install python-pygame. I believe that
> should be effective for any version of Python.
>
> Thanks anyway,
> Tony

My belief is that every package has to be installed in the site-packages 
directory for each version of Python.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

2to3 translation problem Tony van der Hoff <tony@vanderhoff.org> - 2015-12-12 14:42 +0000
  Re: 2to3 translation problem Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-12-12 15:09 +0000
    Re: 2to3 translation problem Tony van der Hoff <tony@vanderhoff.org> - 2015-12-12 16:31 +0000
      Re: 2to3 translation problem Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-12-12 16:56 +0000
      Re: 2to3 translation problem Peter Otten <__peter__@web.de> - 2015-12-12 17:59 +0100
      Re: 2to3 translation problem Laura Creighton <lac@openend.se> - 2015-12-12 18:08 +0100
      Re: 2to3 translation problem Laura Creighton <lac@openend.se> - 2015-12-12 18:09 +0100
        Re: 2to3 translation problem Tony van der Hoff <tony@vanderhoff.org> - 2015-12-12 17:30 +0000
          Re: 2to3 translation problem Chris Angelico <rosuav@gmail.com> - 2015-12-13 04:50 +1100
          Re: 2to3 translation problem Laura Creighton <lac@openend.se> - 2015-12-12 18:54 +0100
            Re: 2to3 translation problem Tony van der Hoff <tony@vanderhoff.org> - 2015-12-12 20:24 +0000
              Re: 2to3 translation problem Laura Creighton <lac@openend.se> - 2015-12-12 22:18 +0100
          Re: 2to3 translation problem Terry Reedy <tjreedy@udel.edu> - 2015-12-12 15:17 -0500

csiph-web