Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #90669

Re: Trying to build Python

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 <rosuav@gmail.com>
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 <a8f18c31-4da2-473b-85a1-309b0ac60ea0@googlegroups.com>
References <87a8x65e28.fsf@Equus.decebal.nl> <a8f18c31-4da2-473b-85a1-309b0ac60ea0@googlegroups.com>
Date Fri, 15 May 2015 21:16:45 +1000
Subject Re: Trying to build Python
From Chris Angelico <rosuav@gmail.com>
Cc "python-list@python.org" <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 <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.33.1431688614.17265.python-list@python.org> (permalink)
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

Show key headers only | View raw


On Fri, May 15, 2015 at 9:02 PM, Rustom Mody <rustompmody@gmail.com> 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

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Trying to build Python Cecil Westerhof <Cecil@decebal.nl> - 2015-05-15 12:29 +0200
  Re: Trying to build Python Rustom Mody <rustompmody@gmail.com> - 2015-05-15 04:02 -0700
    Re: Trying to build Python Chris Angelico <rosuav@gmail.com> - 2015-05-15 21:16 +1000
      Re: Trying to build Python Cecil Westerhof <Cecil@decebal.nl> - 2015-05-15 16:25 +0200
        Re: Trying to build Python Ned Batchelder <ned@nedbatchelder.com> - 2015-05-15 09:37 -0700

csiph-web