Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #75103
| 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 | <python-python-list@m.gmane.org> |
| 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 <nad@acm.org> |
| Subject | Re: Is it possible to install Python on a network? |
| Date | Wed, 23 Jul 2014 16:47:14 -0700 |
| References | <e84ec19b-f441-4c4b-ac63-1e2f7b893f8f@googlegroups.com> <2d7d457c-2030-43d0-94a6-6ceb93eb4d7c@googlegroups.com> <mailman.12213.1406087474.18130.python-list@python.org> <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 <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.12252.1406159254.18130.python-list@python.org> (permalink) |
| 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 |
Show key headers only | View raw
In article <875ce0f0-c6a8-4b50-b97f-d11ee543ef05@googlegroups.com>,
roys2005 <roys2005@gmail.com> 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
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Is it possible to install Python on a network? roys2005@gmail.com - 2014-07-22 13:49 -0700
Re: Is it possible to install Python on a network? emile <emile@fenx.com> - 2014-07-22 14:08 -0700
Re: Is it possible to install Python on a network? roys2005 <roys2005@gmail.com> - 2014-07-22 17:41 -0700
Re: Is it possible to install Python on a network? Dan Stromberg <drsalists@gmail.com> - 2014-07-22 20:51 -0700
Re: Is it possible to install Python on a network? roys2005 <roys2005@gmail.com> - 2014-07-23 07:15 -0700
Re: Is it possible to install Python on a network? Chris Angelico <rosuav@gmail.com> - 2014-07-24 01:46 +1000
Re: Is it possible to install Python on a network? Ned Deily <nad@acm.org> - 2014-07-23 16:47 -0700
Re: Is it possible to install Python on a network? Dan Stromberg <drsalists@gmail.com> - 2014-07-23 20:40 -0700
Re: Is it possible to install Python on a network? Ben Finney <ben+python@benfinney.id.au> - 2014-07-23 14:18 +1000
Re: Is it possible to install Python on a network? roys2005 <roys2005@gmail.com> - 2014-07-23 07:24 -0700
Re: Is it possible to install Python on a network? Chris Angelico <rosuav@gmail.com> - 2014-07-24 01:56 +1000
Re: Is it possible to install Python on a network? Ben Finney <ben+python@benfinney.id.au> - 2014-07-24 12:35 +1000
Re: Is it possible to install Python on a network? Chris Angelico <rosuav@gmail.com> - 2014-07-24 12:42 +1000
Re: Is it possible to install Python on a network? Ben Finney <ben+python@benfinney.id.au> - 2014-07-24 12:48 +1000
Re: Is it possible to install Python on a network? Chris Angelico <rosuav@gmail.com> - 2014-07-24 12:52 +1000
Re: Is it possible to install Python on a network? Chris Angelico <rosuav@gmail.com> - 2014-07-23 16:17 +1000
csiph-web