Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #35235
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!cs.uu.nl!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <jacksilver045@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'interpreter': 0.04; 'compiler': 0.05; 'cpython': 0.05; 'installed.': 0.05; 'expat': 0.07; 'python': 0.09; 'filesystem': 0.09; 'libffi': 0.09; 'runtime': 0.09; 'sqlite': 0.09; 'subject:dependencies': 0.09; 'extension': 0.13; '(the': 0.15; 'modules,': 0.16; 'openssl': 0.16; 'scratch': 0.16; 'valgrind': 0.16; 'zlib': 0.16; 'headers': 0.17; 'module': 0.19; 'fairly': 0.21; 'libraries': 0.22; 'machine.': 0.22; 'second': 0.24; 'linux': 0.24; 'machine': 0.24; 'core': 0.27; 'message-id:@mail.gmail.com': 0.27; 'built.': 0.29; 'install': 0.29; 'minimal': 0.30; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'thanks': 0.34; 'server': 0.35; 'list': 0.35; 'needed': 0.35; 'machines': 0.35; 'received:209.85': 0.35; 'there': 0.35; 'anything': 0.36; 'client': 0.36; 'too': 0.36; 'two': 0.37; 'received:209': 0.37; 'received:209.85.216': 0.37; 'some': 0.38; 'to:addr:python.org': 0.39; 'build': 0.39; 'header:Received:5': 0.40; 'think': 0.40; 'skip:u 10': 0.60; 'first': 0.61; 'here': 0.65; 'else.': 0.65; 'subject:Build': 0.65 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=PGznMlCX9+beOiUVS4KdIc2y0DdntztnhaJ8tHPEDuw=; b=qOLmfyZ1n4NYtXFuev+iYiGY90NK3dc5JUJdqF/84falZcjcymwM+YAAVokEQF2HHl 882cFwsS1q27H3qs8aH1aIY4pdq/ynK4ZXghN95snGdGS8p+VIUl0mjHwWtw0pqtH0dT 12xIi9TfSuzIMJw0vg4dlUZu2ZfhsPFstwT4Y66XcTBBOWebsb1MffSA1qWr8DAuznnD xdSMzMrh31VqAIX4ZYuPlL4UqI2EjCZJ1GnzoGNQKj+Cw3K5+JEWuzTU9RQHSrI/N0rL TiMU0cGOZPURibq16P7fVRTgY2SWm8xumV4VzN8w5J7mPuY+Je8pe2DkxvdS3OagKTC7 uRdA== |
| MIME-Version | 1.0 |
| Date | Thu, 20 Dec 2012 17:11:45 -0500 |
| Subject | Build and runtime dependencies |
| From | Jack Silver <jacksilver045@gmail.com> |
| To | python-list@python.org |
| Content-Type | multipart/alternative; boundary=047d7bdc1a86406e6304d150040a |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://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 | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1116.1356041898.29569.python-list@python.org> (permalink) |
| Lines | 64 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1356041898 news.xs4all.nl 6868 [2001:888:2000:d::a6]:51086 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:35235 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
I have two Linux From Scratch machine. On the first one (the server), I want to build install python 3.3.0 in a shared filesystem and access it from the second one (the client). These machines are fairly minimal in term of the number of software installed. I just want to install python on this filesystem and anything else. I would like to know what are the build and runtime dependencies that are needed on both machine. My understanding is that the core CPython interpreter only needs a C compiler to be built. For the extension modules, I think that only the development headers of some additional libraries are needed on the server machine. Hence, I do not need to install all those libraries on the client machine. Right ? I would like to build as much module I can, so I have a complete python installation. Here is the list of dependecies I think I need to install on the server machine : expat bzip2 gdbm openssl libffi zlib tk sqlite valgrind bluez anything ? Is there anything I need to install on the client too ? Thanks Jack
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Build and runtime dependencies Jack Silver <jacksilver045@gmail.com> - 2012-12-20 17:11 -0500 Re: Build and runtime dependencies Miki Tebeka <miki.tebeka@gmail.com> - 2012-12-20 16:37 -0800 Re: Build and runtime dependencies Miki Tebeka <miki.tebeka@gmail.com> - 2012-12-20 16:37 -0800 Re: Build and runtime dependencies Hans Mulder <hansmu@xs4all.nl> - 2012-12-21 02:42 +0100
csiph-web