Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.05; 'assumed': 0.09; 'runtime': 0.09; 'dlls': 0.16; 'guessing': 0.16; 'subject:Which': 0.16; 'typo': 0.16; 'received:74.125.82.44': 0.16; 'received:mail-ww0-f44.google.com': 0.16; 'wrote:': 0.18; 'shipped': 0.18; 'dec': 0.22; '(or': 0.22; 'header:In-Reply-To:1': 0.22; 'library.': 0.24; 'windows': 0.26; "i'm": 0.26; 'message- id:@mail.gmail.com': 0.28; '27,': 0.29; 'pm,': 0.29; 'url:shtml': 0.30; 'tue,': 0.32; 'to:addr:python-list': 0.34; 'probably': 0.34; 'it.': 0.34; 'dll': 0.34; 'received:74.125.82': 0.35; 'supposed': 0.35; 'but': 0.37; 'run': 0.37; 'received:74.125': 0.37; 'received:google.com': 0.37; 'another': 0.37; 'several': 0.38; 'missing': 0.40; 'to:addr:python.org': 0.40; 'download': 0.60; '2011': 0.61; 'ubiquitous': 0.84 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=CIBP9p0na8Op+FyGQD74ZggXrBYAw1n9omyoLeUj0rQ=; b=VJegMI0+B/O7PbHe/nOJMEZx8+FB59McqXr1MyGTRdT0h0KqRssGAOI26mvsQXtMfU jZev1rSMPgj3Q/DgQnLg9lpzq7WvRLDGRHFHoOrPY37brOy5vD4OPxUEvPbaMWnG+NWH Fld5fNEYed+SM8Xk2n6o/EIeKeIO2cmMdj5M0= MIME-Version: 1.0 In-Reply-To: References: From: Ian Kelly Date: Tue, 27 Dec 2011 19:27:49 -0700 Subject: Re: Which libraries for Python 2.5.2 To: Python 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: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1325039303 news.xs4all.nl 6974 [2001:888:2000:d::a6]:60918 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:18087 On Tue, Dec 27, 2011 at 6:21 PM, W. eWatson wrote: > Well, it found several problems. These DLLs > MSVCP1 > EFSADU > MSJAVA. I'm guessing MSVCP1 is a typo for MSVCP71? If that is missing then that is probably the culprit. That DLL is the C runtime library. It is supposed to be shipped with applications that need it, but it is so ubiquitous that it is often assumed to be present or forgotten. You can download it from http://www.dll-files.com/dllindex/dll-files.shtml?msvcp71 (or just find it on another Windows XP PC) and copy it into C:\Windows\System32. Don't forget to run regsvr32 to register it. HTH, Ian