Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!newsfeed1.swip.net!uio.no!news.tele.dk!news.tele.dk!small.news.tele.dk!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; 'configure': 0.05; 'subject:Python': 0.06; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; '(default': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:install': 0.16; 'subject:possible': 0.16; 'wrote:': 0.18; 'producing': 0.19; 'install': 0.23; 'header:User-Agent:1': 0.23; 'supported': 0.26; 'header:X-Complaints-To:1': 0.27; 'installed': 0.27; 'wonder': 0.29; 'specified': 0.30; 'ok.': 0.31; 'compatible': 0.32; 'skip:_ 10': 0.34; 'there': 0.35; 'charset:us- ascii': 0.36; 'subject:?': 0.36; 'should': 0.36; 'so,': 0.37; 'configured': 0.38; 'e.g.': 0.38; 'to:addr:python-list': 0.38; 'files': 0.38; 'issue': 0.38; 'skip:- 10': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'received:204': 0.75; 'article': 0.77; './configure': 0.84; 'captures': 0.84; 'received:204.14': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Ned Deily Subject: Re: Is it possible to install Python on a network? Date: Wed, 23 Jul 2014 16:47:14 -0700 References: <2d7d457c-2030-43d0-94a6-6ceb93eb4d7c@googlegroups.com> <875ce0f0-c6a8-4b50-b97f-d11ee543ef05@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 204.14.154.216 User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1406159254 news.xs4all.nl 2848 [2001:888:2000:d::a6]:60298 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:75103 In article <875ce0f0-c6a8-4b50-b97f-d11ee543ef05@googlegroups.com>, roys2005 wrote: > I still wonder why there is no distribution package for *ix that > contains binaries/libraries that can be installed "/where/ever/..." One issue is that the Python build process on **ix captures the configured install path names into the built files in various places, like in _sysconfigdata.py. So, in general, it is currently not supported to install a vanilla Python build into a location other than the path specified on the original configure commmand (default = /usr/local), e.g. ./configure --prefix=/path/to make make install As long as you are producing a package that will be installed into the same path on each system and each system has a compatible architecture, you should be OK. -- Ned Deily, nad@acm.org