Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: "Frank Millman" Newsgroups: comp.lang.python Subject: Re: Installing on linux - missing devel packages Date: Fri, 22 Jan 2016 07:40:00 +0200 Lines: 23 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 6uGUxSXMeu1kGFi8z0/zAw1elxuS4unZ4HHnh33ToIjA== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; '21,': 0.07; 'subject:missing': 0.07; 'components,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; 'jan': 0.11; 'thu,': 0.15; '2016': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; 'fix': 0.21; 'installation': 0.23; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'install': 0.25; 'header:X -Complaints-To:1': 0.26; 'linux': 0.26; 'chris': 0.26; 'equivalent': 0.27; 'packaging': 0.27; 'fedora': 0.29; 'probably': 0.31; 'run': 0.33; 'source': 0.33; 'that,': 0.34; 'question,': 0.35; 'skip:. 20': 0.35; 'but': 0.36; 'there': 0.36; 'to:addr :python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'received:org': 0.37; 'missing': 0.37; 'sure': 0.39; 'enough': 0.39; 'to:addr:python.org': 0.40; 'called': 0.40; 'easy': 0.60; 'your': 0.60; 'entire': 0.61; 'more': 0.63; 'complete': 0.63; 'frank': 0.72; 'build-dep': 0.84; 'replies.': 0.84; '"apt-get': 0.91 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: 197.89.68.191 In-Reply-To: X-MSMail-Priority: Normal Importance: Normal X-Newsreader: Microsoft Windows Live Mail 15.4.3502.922 X-MimeOLE: Produced By Microsoft MimeOLE V15.4.3502.922 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101992 On 2016-01-21, Chris Angelico wrote: > On Thu, Jan 21, 2016 at 6:18 PM, Frank Millman wrote: >> Fedora 22 comes standard with Python 3.4.2. I want to install 3.5.1. >> >> It is easy enough to download the source and run ./configure;make;make >> altinstall. But then I find that I cannot import gzip because zlib-devel >> is >> missing. I fix that, then I find that sqlite-devel is missing. >> >> Is there an easy way to find out all the missing components, so that when >> the installation is complete I can be sure I have the entire standard >> lib? > > This is a Linux packaging question, more than a Python one. On Debian > systems, the way to do that is "apt-get build-dep python3"; check your > own package manager for an equivalent - it'll probably be called > builddep or similar. Thanks for all the replies. Frank