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


Groups > comp.lang.python > #18072

Re: Which libraries for Python 2.5.2

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <ian.g.kelly@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.010
X-Spam-Evidence '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.05; '(those': 0.09; 'dependency': 0.09; 'order?': 0.09; 'dll.': 0.16; 'matplotlib': 0.16; 'matplotlib,': 0.16; 'numpy': 0.16; 'scipy,': 0.16; 'subject:Which': 0.16; 'wrote:': 0.18; 'errors,': 0.18; 'file,': 0.19; 'dec': 0.22; 'header:In-Reply-To:1': 0.22; 'tree.': 0.23; 'received:74.125.82.174': 0.24; 'loaded': 0.25; 'module': 0.26; 'message-id:@mail.gmail.com': 0.28; '27,': 0.29; 'replaced': 0.29; 'print': 0.29; 'error': 0.29; 'pm,': 0.29; 'modules,': 0.30; 'ok,': 0.31; 'installed': 0.31; 'anyone': 0.31; 'does': 0.32; 'list': 0.32; 'tue,': 0.32; "can't": 0.32; 'there': 0.33; 'to:addr :python-list': 0.34; 'it.': 0.34; 'occurs': 0.34; 'received:74.125.82': 0.35; 'list.': 0.35; 'help,': 0.35; 'install': 0.35; 'but': 0.37; 'received:74.125': 0.37; 'received:google.com': 0.37; "there's": 0.37; 'think': 0.37; 'open': 0.38; 'should': 0.39; 'missing': 0.40; 'to:addr:python.org': 0.40; '2011': 0.61; 'full': 0.62; 'order': 0.62; 'below': 0.63; 'show': 0.67
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=jrXMtOMN4kTzoHFTMSdcoM7ZGXTj1clF0zFHDPSHxE4=; b=hHBrRe2OYB+HHNweMMk3mxeVJWkWfaYhWl7Gl0p7201O2wZxbnTQZVQrSZt+PRe2IU VRKtxCU4dN59Adk3cS0Fye3e3p7oaCBmoAgkbGr4K6K6ZAoOAEvDj4JLweckJWw7CIS5 qSl0XJJZOxCR4bdJhSYx0XNgkrQ6z7p0lcsk8=
MIME-Version 1.0
In-Reply-To <jdddmq$htq$1@dont-email.me>
References <jdcq87$m3b$1@dont-email.me> <mailman.4136.1325004155.27778.python-list@python.org> <jdd2pu$cik$1@dont-email.me> <jdd9n2$o0t$1@dont-email.me> <jdddmq$htq$1@dont-email.me>
From Ian Kelly <ian.g.kelly@gmail.com>
Date Tue, 27 Dec 2011 15:58:58 -0700
Subject Re: Which libraries for Python 2.5.2
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
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.4162.1325026771.27778.python-list@python.org> (permalink)
Lines 25
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1325026771 news.xs4all.nl 6852 [2001:888:2000:d::a6]:47779
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:18072

Show key headers only | View raw


On Tue, Dec 27, 2011 at 2:35 PM, W. eWatson <wolftracks@invalid.com> wrote:
> I replaced numpy and matplotlib, and added scipy. I still get errors, but
> perhaps because the install order is now wrong. It was
> numpy
> matplotlib
>
> Does anyone know the right order?

The order (numpy, scipy, matplotlib) reflects the dependencies, but
since the installers are just fancied-up self-extracting zips, I don't
think it should matter.

> OK, I installed it. Is there an easy way to go to track down this dll.
> There's a Help, but I can't print it from the PC I have it on.

It should be reasonably self-explanatory, I think.  Just start
Dependency Walker, open up the _path.pyd file, and it will show you
the full dependency tree.  Below that is a list of all the modules,
and any missing dependencies should helpfully show up right at the top
of the list.

Note that missing delay-load dependencies (those with an hourglass
icon) are not necessarily problems.  Since the error occurs at
load-time, you're looking for a missing module that would be loaded
immediately.

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


Thread

Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 08:03 -0800
  Re: Which libraries for Python 2.5.2 Lie Ryan <lie.1296@gmail.com> - 2011-12-28 03:42 +1100
    Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 09:47 -0800
    Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 10:29 -0800
      Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 12:27 -0800
        Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 13:35 -0800
          Re: Which libraries for Python 2.5.2 Ian Kelly <ian.g.kelly@gmail.com> - 2011-12-27 15:58 -0700
            Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 17:21 -0800
              Re: Which libraries for Python 2.5.2 Ian Kelly <ian.g.kelly@gmail.com> - 2011-12-27 19:27 -0700
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 19:31 -0800
                Re: Which libraries for Python 2.5.2 Dave Angel <d@davea.name> - 2011-12-27 22:47 -0500
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-28 08:33 -0800
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-28 08:46 -0800
                Re: Which libraries for Python 2.5.2 Ian Kelly <ian.g.kelly@gmail.com> - 2011-12-28 10:37 -0700
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-28 12:55 -0800
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-28 19:04 -0800
                Re: Which libraries for Python 2.5.2 Benjamin Kaplan <benjamin.kaplan@case.edu> - 2011-12-28 23:02 -0500
                Re: Which libraries for Python 2.5.2 Michael Torrie <torriem@gmail.com> - 2011-12-28 22:09 -0700
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-28 21:56 -0800
                Re: Which libraries for Python 2.5.2 Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2011-12-29 09:54 -0500
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-29 09:23 -0800
                Re: Which libraries for Python 2.5.2 Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2011-12-29 14:26 -0500
                Re: Which libraries for Python 2.5.2 Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2011-12-29 12:04 -0500
                Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-29 09:26 -0800
                Re: Which libraries for Python 2.5.2 Ian Kelly <ian.g.kelly@gmail.com> - 2011-12-29 10:44 -0700
                Re: Which libraries for Python 2.5.2 [SOLVED] "W. eWatson" <wolftracks@invalid.com> - 2011-12-29 11:31 -0800
                Re: Which libraries for Python 2.5.2 Chris Angelico <rosuav@gmail.com> - 2011-12-29 18:37 +1100
  Re: Which libraries for Python 2.5.2 Ian Kelly <ian.g.kelly@gmail.com> - 2011-12-27 09:53 -0700
    Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 10:04 -0800
  Re: Which libraries for Python 2.5.2 Christian Heimes <lists@cheimes.de> - 2011-12-27 19:36 +0100
    Re: Which libraries for Python 2.5.2 "W. eWatson" <wolftracks@invalid.com> - 2011-12-27 13:35 -0800

csiph-web