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


Groups > comp.lang.python > #75091

Re: Is it possible to install Python on a network?

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>
Date 2014-07-24 01:46 +1000
Subject Re: Is it possible to install Python on a network?
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.12244.1406130421.18130.python-list@python.org> (permalink)

Show all headers | View raw


On Thu, Jul 24, 2014 at 12:15 AM, roys2005 <roys2005@gmail.com> wrote:
>   Thanks for the information. So, one option is to build Python
>   from source code to be able to install "/where/ever/..."
>
>   I still wonder why there is no distribution package for *ix that
>   contains binaries/libraries that can be installed "/where/ever/..."

There probably isn't, because there's no need to. Distro packages on
Linux are generally designed to play nicely with the rest of the
packages in the repository, rather than handle every possible
configuration change you might want to do; if you want full
flexibility, it's usually pretty easy to just grab the source and
build (this is distinctly different from Windows, where it's assumed
that most people don't know how to build from source, and Mac OS,
where you have to actively jump through hoops just to get a C
compiler).

On a Debian-derived system, you should be able to use "sudo apt-get
build-dep python" (or python3) to get the libraries etc you need, and
then either "apt-get source python" or "hg clone
http://hg.python.org/cpython" to get the source (the former will get
you the source for the system Python, the latter will get you the
absolute latest source code for all branches - you might have to pick
which branch to use, rather than using 'default'). On Red Hat systems,
I'm sure there's an equally easy way to gather the build dependencies,
and it'll probably be in 'man yum'.

ChrisA

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


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