Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!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.199 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.61; '*S*': 0.01; 'subject:Python': 0.05; 'python': 0.09; 'easy_install': 0.16; 'pip?': 0.16; 'version?': 0.16; 'wrote:': 0.17; 'jan': 0.18; 'versions': 0.20; 'header:In- Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'environment.': 0.27; 'question': 0.27; 'issues.': 0.29; 'install': 0.29; 'usually': 0.30; 'fri,': 0.30; 'distribute': 0.30; '11,': 0.33; 'to:addr:python-list': 0.33; 'another': 0.33; 'subject:?': 0.35; 'charset:us-ascii': 0.36; 'virtual': 0.37; 'rather': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'received:10': 0.38; 'to:addr:python.org': 0.39; 'your': 0.60; 'easy': 0.60; 'content- disposition:inline': 0.60; 'skip:u 10': 0.60; 'side': 0.61; 'latest': 0.61; 'relatively': 0.62; 'thomas': 0.62; 'upgrading': 0.62; 'note:': 0.64; 'received:178': 0.65; '2013': 0.84; 'received:10.94': 0.84; 'poorly': 0.93; 'fun!': 0.95 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=uni-mainz.de; i=@uni-mainz.de; q=dns/txt; s=ironport; t=1357994684; x=1389530684; h=date:from:to:subject:message-id:references:mime-version: in-reply-to; bh=0jKtx7swMZqeM8XYRti0XpcOqBUrMI8YkaaFcvhv26Q=; b=RoQMPpVEKFXhr+R7KPSj8FplqANqUrxBuEqrTySZK5PfQJPhfeK2k7UO 6McmJh8ScgUF1UEX/I+HiFN5VFaYWcpYzonwZjjs4+PStqLC0HKDrsFoG RwNMcsF/PmmmMlLRRSoeFJjRFI4lUPrujXk0w2lLY1zfYU/nOXZGCGXNY 8=; X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnMIABBZ8VAKXgZY/2dsb2JhbABEg0e6XXOCHgEBBTpPCxgJFRAPBSkgiDC1MI0TcoJIYQOWCgGQSYJ2gWc8 Date: Sat, 12 Jan 2013 13:43:28 +0100 From: Thomas Bach To: Subject: Re: Dependency management in Python? References: <6b91570c-9cf0-4caf-8727-b463c6d098cd@googlegroups.com> <69690331-5194-443e-bf6b-fad0c3bf3ff4@googlegroups.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <69690331-5194-443e-bf6b-fad0c3bf3ff4@googlegroups.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Originating-IP: [178.4.198.195] 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1357994685 news.xs4all.nl 6951 [2001:888:2000:d::a6]:33534 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:36699 On Fri, Jan 11, 2013 at 06:42:18PM -0800, Adelbert Chang wrote: > Another question - how do we then get PIP to the latest version? Or > is it relatively easy to uninstall/reinstall PIP? Simply do a $ pip install -U distribute $ pip install -U pip from time to time in your virtual environment. As a side note: some versions of distribute, pip and virtualenv do interact rather poorly on Python 3. Upgrading via easy_install: $ easy_install -U distribute $ easy_install -U pip usually solves these issues. Have fun! Thomas