Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.05; 'works.': 0.07; 'cc:addr:python-list': 0.09; 'any)': 0.09; 'received:openend.se': 0.09; 'received:theraft.openend.se': 0.09; 'python': 0.10; '>that': 0.16; '>to': 0.16; 'from:addr:lac': 0.16; 'from:addr:openend.se': 0.16; 'from:name:laura creighton': 0.16; 'message-id:@fido.openend.se': 0.16; 'optionally': 0.16; 'received:89.233': 0.16; 'received:89.233.217': 0.16; 'received:89.233.217.133': 0.16; 'received:fido': 0.16; 'received:fido.openend.se': 0.16; 'run.': 0.16; 'basically': 0.18; 'directory.': 0.18; 'laura': 0.18; 'language': 0.19; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'subject:Questions': 0.22; 'cc:no real name:2**0': 0.22; 'installation': 0.23; 'downloaded': 0.24; 'header:In-Reply-To:1': 0.24; 'install': 0.25; 'subject:2015': 0.27; 'this.': 0.28; 'perl': 0.29; 'question:': 0.29; 'received:se': 0.29; 'program,': 0.29; 'certain': 0.31; 'run': 0.33; 'common': 0.33; 'but': 0.36; 'created': 0.36; 'modules': 0.36; 'subject:: ': 0.37; 'charset:us-ascii': 0.37; 'things': 0.38; 'delete': 0.38; 'whatever': 0.39; 'does': 0.39; 'well.': 0.40; 'your': 0.60; 'entire': 0.61; 'header:Message- Id:1': 0.61; 'programs': 0.62; 'linked': 0.63; 'drive,': 0.66; 'flash': 0.67; 'programs,': 0.72; 'received:89': 0.80; 'drive.': 0.84 To: "E.D.G." cc: python-list@python.org From: Laura Creighton Subject: Re: Python Questions - July 25, 2015 In-Reply-To: Message from "E.D.G." of "Sat, 25 Jul 2015 08:16:10 -0500." References: <2adac4ce-976f-4a8a-849d-c76e484eba77@googlegroups.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <25217.1437832762.1@fido> Date: Sat, 25 Jul 2015 15:59:22 +0200 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.3.9 (theraft.openend.se [89.233.217.130]); Sat, 25 Jul 2015 15:59:23 +0200 (CEST) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 1437832768 news.xs4all.nl 2958 [2001:888:2000:d::a6]:60047 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:94553 >Another question: > > With my Perl programs, when I want to run the programs on a new >computer or even from a flash drive, basically all I do is copy an entire >existing Perl program directory to the new computer or flash drive. And >that works. However, to make certain that it will work I might also >actually install the Perl language program, delete everything in the Perl >directory, and then copy all of the contents of an existing Perl directory >to that new Perl directory. That way all of the various Perl modules don't >have to be individually downloaded and linked with the main program. > > Will that work with Python as well. Or does each installation need >to be created from scratch? > >Regards, > >E.D.G. The most common way to do things is to tell your users to install whatever python distribution you pick and then optionally install these extra packages (if you need any) and then give them a python program to run. But you can also package everything up into a .exe for them if they need this. Laura