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: 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: References: From: Ian Kelly 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: 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 On Tue, Dec 27, 2011 at 2:35 PM, W. eWatson 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.