Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2.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.009 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.06; 'python3': 0.07; 'friday,': 0.09; 'subject:build': 0.09; 'cc:addr :python-list': 0.11; 'python': 0.11; 'aptitude': 0.16; 'fetch': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'partly': 0.16; 'sudo': 0.16; 'wrote:': 0.18; 'trying': 0.19; 'resolved': 0.19; 'successful,': 0.19; 'not,': 0.20; 'cc:addr:python.org': 0.22; 'install': 0.23; 'module,': 0.24; 'cc:2**0': 0.24; '15,': 0.26; 'header:In-Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; 'fri,': 0.33; 'but': 0.35; 'received:google.com': 0.35; 'should': 0.36; 'requirements': 0.37; 'pm,': 0.38; 'sure': 0.39; 'system.': 0.39; '2015': 0.84; '9:02': 0.84; 'apt-get': 0.84; 'build-dep': 0.84; 'grabbing': 0.84; 'missing.': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=4iyq2019wZO2XjBZezTq7dL9i7Q/K8RivbpJbq4YjUM=; b=YwhiJwtBShBfDewzq5uikRQ97ztckjBSEiYj53DM+EbWMvdvbf/Jt4uwxg1Crh61W1 19liEBs2Xf/AvAZTqcls0spGUpmq4bICI6jmaG4FUb9D4sKhObd+XMnUQdwr/sHpbB1z mrwa/zitbPeiSX9hC0roBElO2uBBI39cbYQ1RrVWH9e8lDguyzxH7SCG9nQ2EjKxdJD0 4BmQl8fnEqWrIuDJpfAwoaEeJbjegIXdPfg7SoXepd9VFICBBNz/3u+0YCrV5Jm1M03k OsCbbDBf0tkb34x6xs0g80WQvf0ZytAviqClcOma9pfceXIoWSlsy2EFkiI9Gri7XlpA I1pw== MIME-Version: 1.0 X-Received: by 10.42.43.199 with SMTP id y7mr20227327ice.12.1431688605888; Fri, 15 May 2015 04:16:45 -0700 (PDT) In-Reply-To: References: <87a8x65e28.fsf@Equus.decebal.nl> Date: Fri, 15 May 2015 21:16:45 +1000 Subject: Re: Trying to build Python From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: , Newsgroups: comp.lang.python Message-ID: Lines: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1431688614 news.xs4all.nl 2938 [2001:888:2000:d::a6]:37594 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90669 On Fri, May 15, 2015 at 9:02 PM, Rustom Mody wrote: > On Friday, May 15, 2015 at 4:28:13 PM UTC+5:30, Cecil Westerhof wrote: >> I am trying to build Python 3 on a Debian system. It is successful, >> but a few things where missing. Partly I solved it, but a few things >> keep unresolved: >> _bz2 >> _sqlite3 >> readline >> _dbm >> _ssl >> _gdbm >> >> What do I need to do to get those resolved also? >> > > $ aptitude build-dep python3 > > should fetch the requirements of python3 And if not, try grabbing some development libraries: $ sudo apt-get install libbz2-dev libsqlite3-dev libreadline-dev libssl-dev libgdbm-dev I'm not sure about the _dbm module, not sure what it needs. ChrisA