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


Groups > comp.lang.python > #47586

Re: Build Python 2.7.5 - Modules missing

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <skip.montanaro@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.005
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.06; 'subject:missing': 0.07; 'sentence': 0.09; 'setup.py': 0.09; 'cc:addr:python-list': 0.11; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'naming': 0.16; 'subject:Modules': 0.16; 'tcl': 0.16; 'underlying': 0.16; 'sender:addr:gmail.com': 0.17; 'example': 0.22; 'cc:addr:python.org': 0.22; 'installation': 0.23; 'skip': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'installed': 0.27; 'thus': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'libraries': 0.31; 'probably': 0.32; 'figure': 0.32; 'linux': 0.33; 'message.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'building': 0.35; 'version': 0.36; 'next': 0.36; 'example,': 0.37; 'sure': 0.39; 'how': 0.40; "you're": 0.61; 'telling': 0.64; 'believe': 0.68; 'subject:Build': 0.68
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=PsDTXe5WlLw3DroEG61Y1XojOi3M6iG5FPIz+O63j9g=; b=pJhlw3C09gJ76F0CH1Iuswz17YoxORvzF56iDjqNnk3iZvfG0k125jdhYAzg8eeznu EyYMQtUBc+sl+YcBopJs/YxFwucvAuMnJOsCMUclgMIBQtqCT2mAyqWFy+0o4OEyBOYA 26luk32aPTjIbe5rs0Lx/5xqwRI8JuUqBf+JQpu1F7WhOekaZ/Dx2CBOvgGVTBxN7PER ABzFTYKv8re1g7Ud2DbGmhrLNqE5H7Qd1DQN58oc7KEs+2733lPEsONsq/fV9rvfZHTx KAkP178eQ/x+atYmiCZ702VNetcUIDBpX3VCjvkvaoVqZJVcdpp9fJ6cod/aRxXdef+V JGwQ==
MIME-Version 1.0
X-Received by 10.50.9.7 with SMTP id v7mr4577247iga.51.1370887494989; Mon, 10 Jun 2013 11:04:54 -0700 (PDT)
Sender skip.montanaro@gmail.com
In-Reply-To <kp53mt$hj5$1@news.albasani.net>
References <kp53mt$hj5$1@news.albasani.net>
Date Mon, 10 Jun 2013 13:04:54 -0500
X-Google-Sender-Auth dY2XapM5tt4JsMHQCPQ3PwVq3p0
Subject Re: Build Python 2.7.5 - Modules missing
From Skip Montanaro <skip@pobox.com>
To Walter Hurry <walterhurry@lavabit.com>
Content-Type text/plain; charset=UTF-8
Cc python-list@python.org
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://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 <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.2976.1370887497.3114.python-list@python.org> (permalink)
Lines 17
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1370887497 news.xs4all.nl 15890 [2001:888:2000:d::a6]:36413
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:47586

Show key headers only | View raw


> It carried on with the installation OK, but I don't understand the last
> sentence in the message. How can I find out exactly what modules are
> missing, and what I need to do to make sure they are built next time?

Some of them won't ever build, as they are platform-dependent.  For
example, if you're building on a Linux machine, sunaudiodev won't
build.

The last sentence is just telling you to poke around in the setup.py
code to figure out what it's looking for.  Many libraries have arcane
version naming schemes, and it might not stumble upon the right
spelling, and thus fail to find it.  For example tcl 8.5 might be
installed as libtcl85.so, libtcl8.5.dylib, etc.  I believe the modules
which failed for you are probably all named in a straightforward
fashion, so missing underlying libraries are probably the culprit.

Skip

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


Thread

Build Python 2.7.5 - Modules missing Walter Hurry <walterhurry@lavabit.com> - 2013-06-10 17:51 +0000
  Re: Build Python 2.7.5 - Modules missing Skip Montanaro <skip@pobox.com> - 2013-06-10 13:04 -0500
  Re: Build Python 2.7.5 - Modules missing rusi <rustompmody@gmail.com> - 2013-06-11 04:32 -0700
  Re: Build Python 2.7.5 - Modules missing Tony the Tiger <tony@tiger.invalid> - 2013-06-11 16:18 -0500
    Re: Build Python 2.7.5 - Modules missing Walter Hurry <walterhurry@lavabit.com> - 2013-06-12 00:05 +0000

csiph-web