Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.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.046 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'subject:using': 0.09; 'cc:addr:python-list': 0.11; 'up-to-date': 0.14; '"keep': 0.16; '+1.': 0.16; '10:17': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'commit': 0.19; 'cc:addr:python.org': 0.22; 'install': 0.23; 'cc:2**0': 0.24; 'source': 0.25; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'wonder': 0.29; 'message-id:@mail.gmail.com': 0.30; 'file': 0.32; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'done': 0.36; 'list': 0.37; 'subject:new': 0.38; 'subject:needed': 0.38; 'called': 0.40; 'tell': 0.60; 'new': 0.61; 'you.': 0.62; 'here': 0.66; 'batchelder': 0.84; 'control;': 0.91; 'to:none': 0.92 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=IYGtO1u9ED6akp62fr+u1iynPJyUtZ9d+1iwPFdUCNo=; b=wF3tnHZ053OtZ7shQgPj4FgBe4pbJcoazQE3yKRQivtGVZVIDgTQSCaQnCnuibE90L PooCBh70br3LDqKB4ANa0oSgzEcXAl5VI2sK2rWnrHwR9xHfxVO8w57rGL0Qk97nt/2e onG2a70NX8ZsJ2wWJLnS2LJ4Hacp34qdS3xjfkGl+KpHFKJL3NHqiDAsgBgphMPPDh/+ WobgUGT26BFGkpNJ3L8OILW1F5AQnphPyiKyEPw/z7fPB1cGoUubh12Q1e8cyM4d7VHx vkWENKAdrV3YfV3W/HCeNsGZrhAtjVWcCD7jgDycl8IucPndmmOuXhDMQHtJuWCCnvtw mDww== MIME-Version: 1.0 X-Received: by 10.52.110.105 with SMTP id hz9mr4635516vdb.9.1400373026988; Sat, 17 May 2014 17:30:26 -0700 (PDT) In-Reply-To: References: Date: Sun, 18 May 2014 10:30:26 +1000 Subject: Re: using a new computer and bringing needed libraries to it 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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400373036 news.xs4all.nl 2902 [2001:888:2000:d::a6]:39098 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71715 On Sun, May 18, 2014 at 10:17 AM, Ned Batchelder wrote: > Make a list of the packages you need. Put it in a file called > requirements.txt. Then install them with: > > $ pip install -r requirements.txt > > Keep that file up-to-date as you add new requirements. +1. And the "keep up-to-date" bit can be done very well with source control; that way, you don't need to wonder whether you added one over here or deleted one over there - the commit history will tell you. ChrisA