Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!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.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.06; 'mess': 0.09; 'skip:/ 10': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; '"system': 0.16; '24,': 0.16; 'bash,': 0.16; 'fine.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'python",': 0.16; 'says)': 0.16; 'subject:install': 0.16; 'subject:possible': 0.16; 'wrote:': 0.18; 'trying': 0.19; 'thu,': 0.19; 'machine': 0.22; 'cc:addr:python.org': 0.22; 'install': 0.23; 'unix/linux': 0.24; '(or': 0.24; 'cc:2**0': 0.24; 'asking': 0.27; 'header:In-Reply- To:1': 0.27; 'installed': 0.27; 'tried': 0.27; 'point': 0.28; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'that.': 0.31; 'probably': 0.32; 'running': 0.33; 'problem': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'machine.': 0.36; 'subject:?': 0.36; 'should': 0.36; 'remote': 0.38; 'whatever': 0.38; 'rather': 0.38; 'sure': 0.39; 'users': 0.40; 'how': 0.40; 'is.': 0.60; 'most': 0.60; 'tell': 0.60; 'back': 0.62; "you'll": 0.62; 'central': 0.64; 'talking': 0.65; 'jul': 0.74; 'yourself': 0.78; 'to:none': 0.92; 'mount': 0.93 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=Wakqr1YRRysK3hv99XrlhJ9sEIOiHYCmQyFCczGsX0g=; b=aEXBACQTmPoCnt1bQ82Bwmx8QzFggWw1stn2vtqpChYwOP5hcaMNKB+9ngPK2yT6sF zjmW7QlgkQDJhFYhTLkAxiJgpeGGTUCTV/wYC1U2qmZ245TlqH683RcLefxeQwgLkUCH EpWqqGI2JAeLO+sOGaP0IXxuNRGGnfEun3VnlTmPWyOjuWcAIv3k4fioTpjAsUT05YW2 i2mh8TaG+DFYvQFW6JaXV5pb2Ph+phaMfhzFoVJAMGw/+6kFHI674CQ80z9EA3mWcuU9 4i/Fo4QFGNRy02PcaHE45ilnxeVcMwebHtBGf0lkfOs0wkk9+niE8+O7xCjgbi3gjAU1 HKWQ== MIME-Version: 1.0 X-Received: by 10.220.195.67 with SMTP id eb3mr3611876vcb.30.1406130973016; Wed, 23 Jul 2014 08:56:13 -0700 (PDT) In-Reply-To: References: <2d7d457c-2030-43d0-94a6-6ceb93eb4d7c@googlegroups.com> Date: Thu, 24 Jul 2014 01:56:12 +1000 Subject: Re: Is it possible to install Python on a network? From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1406130981 news.xs4all.nl 2937 [2001:888:2000:d::a6]:43594 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:75093 On Thu, Jul 24, 2014 at 12:24 AM, roys2005 wrote: > I am trying to find out how I can install Python on a central machine > so that all users can use it, rather than using /usr/local/bin/python. > ( I am talking about unix/linux platform ) > > Since, I do not know the answer, I was asking if Python > can/can't/should/shouldn't be installed on a central machine. Firstly, I would *strongly* recommend keeping /usr/bin/python (or /usr/local/bin/python, whatever `which python` says) exactly where it is. Call that one the "system Python", and treat it like bash, grep, and all those other important tools. You'll only mess up your system if you mess with that. But with that sorted: I don't see any particular problem with mounting some remote drive and running Python from it. You'll probably need to make sure the path to it is the same as it was on the system that installed it, and you'll definitely want to do this only on systems with the same architecture, but otherwise you should be fine. Make yourself a /usr/central/bin/python or something, install Python into it, and then make /usr/central on all the others as a mount point for /usr/central on the one where you installed it. And then you can come back and tell us all how it went, because most of us will have never tried it :) ChrisA