Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!cs.uu.nl!news.stack.nl!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.023 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'x-mailer:evolution 2.28.3': 0.07; 'python': 0.08; 'builtin': 0.09; 'cc:addr:python- list': 0.15; '*nix': 0.16; 'mistake.': 0.16; 'python2.6': 0.16; 'reinstall': 0.16; 'to:addr:steve': 0.16; 'zlib': 0.16; 'wrote:': 0.18; 'appears': 0.20; 'subject:not': 0.21; 'cc:no real name:2**0': 0.21; 'subject:data': 0.21; 'header:In-Reply-To:1': 0.23; 'steve': 0.23; 'cc:2**0': 0.25; 'installing': 0.28; 'looks': 0.28; 'cc:addr:python.org': 0.29; 'fairly': 0.30; 'module': 0.30; 'imported': 0.30; 'sun,': 0.30; 'installation': 0.30; 'installed': 0.30; 'headers': 0.32; "can't": 0.32; "i've": 0.33; 'there': 0.33; 'file.': 0.34; 'install': 0.34; 'file': 0.36; 'missing': 0.36; 'with.': 0.37; 'but': 0.37; 'subject:can': 0.37; 'run': 0.38; 'called': 0.38; 'i.e.': 0.38; "i'd": 0.39; 'except': 0.39; "there's": 0.39; "it's": 0.39; 'got': 0.39; 'subject:: ': 0.39; 'might': 0.39; 'getting': 0.40; 'did': 0.40; 'tim': 0.40; 'header :Reply-To:1': 0.70; 'reply-to:no real name:2**0': 0.71; 'on?': 0.84; 'received:bethere.co.uk': 0.84; 'subject:; ': 0.91 Subject: Re: can't decompress data; zlib not available From: Tim Wintle To: Steve Edlefsen In-Reply-To: <4EC009D7.90100@sprangle.com> References: <4EC009D7.90100@sprangle.com> Content-Type: text/plain; charset="UTF-8" Organization: Team Rubber Date: Sun, 13 Nov 2011 21:55:05 +0000 Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 87.194.110.230 X-SA-Exim-Mail-From: tim.wintle@teamrubber.com X-SA-Exim-Scanned: No (on mail.netsight.co.uk); SAEximRunCond expanded to false Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: tim.wintle@teamrubber.com 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: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1321221313 news.xs4all.nl 6872 [2001:888:2000:d::a6]:58895 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:15645 On Sun, 2011-11-13 at 11:17 -0700, Steve Edlefsen wrote: > > which appears to install zlib when python is reinstalled. Except I > can't run make without errors and there is no configuration file. > > How do I reinstall python to include zlib? Which OS are you on? Linux? BSD? How did you install Plone? First I'd check if there's a module shadowing the builtin zlib module - i.e. if you've got a local file called "zlib.py" which is getting imported by mistake. Fairly much all *nix systems will have a python installation out of the box - it looks like you need python2.6 I've never had a missing zlib module - but it's possible that it might be missing if you don't have the zlib/deflate headers installed - if they're not available then I'd try installing them and then reinstalling the package you started with. Tim Wintle