Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!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.011 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'cpython': 0.05; 'interpreter': 0.05; 'startup': 0.05; 'subject:Python': 0.06; 'start-up': 0.07; 'inherited': 0.09; 'subject:using': 0.09; 'python': 0.11; 'project,': 0.12; 'stored': 0.12; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'nonetheless': 0.16; 'pyinstaller': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'mon,': 0.24; 'header:In-Reply-To:1': 0.27; 'bigger': 0.30; 'message-id:@mail.gmail.com': 0.30; 'faster,': 0.31; 'subject:development': 0.31; 'maybe': 0.34; 'subject:the': 0.34; 'problem': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'really': 0.36; 'to:addr:python-list': 0.38; 'files': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'ian': 0.60; 'solve': 0.60; 'high': 0.63; 'funny': 0.74; 'jul': 0.74; 'transfer': 0.82; 'story:': 0.84; 'demand.': 0.91; 'hundred': 0.95; '2013': 0.98 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:to :content-type; bh=ZKk4T2Rw0m/qgWJlTGcmeuejNyDUxAx3CETAhssXRYU=; b=bla0G/AxMtWm7EOhR+dA3t1BKi7c8tazouecCPoNjPJnIqzJVsdDlHFRUCWZnzhRG2 zQ/XBIvN6xfctuLxibfolmOVMFDqGUnXD8jk/2n69foIrIL0tEzT8DLOvQCIRBOLb57q fchAe1TV5gTK8xNIKxYzqghV5SX0rOKgKZaGtutNJK6132qseDhG6IPd5fT/2G2tfsLX 0LAPMXrm1IHDz2MmaM/Q2+6Z0gnDamHptUg+eEt9zl8iFImSEWdLpZ8dMEbirEMM3YSD cEE0SwOOeXbw6GfzX1XIq6GoT33hXdWENNCr85p11Qpi0mSlOCpygvkKaJY0MLkhd26F n3+g== MIME-Version: 1.0 X-Received: by 10.220.48.17 with SMTP id p17mr15966510vcf.97.1373378371853; Tue, 09 Jul 2013 06:59:31 -0700 (PDT) In-Reply-To: References: <51f7f573-e4a6-4349-ae50-21de7780ed8c@googlegroups.com> <33fe3c46-9c2e-481a-8aa9-8411e1c32d02@googlegroups.com> Date: Tue, 9 Jul 2013 23:59:31 +1000 Subject: Re: the general development using Python From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1373378375 news.xs4all.nl 15910 [2001:888:2000:d::a6]:46899 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:50245 On Tue, Jul 9, 2013 at 6:41 PM, Ian Kelly wrote: > On Mon, Jul 8, 2013 at 10:46 PM, CM wrote: >>> There are projects that "bundle" the CPython interpreter with your >>> project, but this makes those files really big. >> >> Maybe 5-20 MB. That's a lot bigger than a few hundred K, but it's not that important to keep size down, really. > > Funny story: at my workplace we solve the distribution problem by > placing both the Python interpreter and applications on a network > share. I have inherited a program that nonetheless is stored on the > network share as a pyInstaller bundle because it is (perceived to be) > faster to transfer a single .exe over the network during start-up than > all the individual files on demand. It might actually be faster, if the startup cost of a transfer is high - which it very often can be. But it would likely also be faster to transfer a single .zip or .tar.gz for the same benefit; or, depending on requirements, use 'git pull' or scp. ChrisA