Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #36699
| 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 | <thbach@students.uni-mainz.de> |
| 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 <thbach@students.uni-mainz.de> |
| To | <python-list@python.org> |
| Subject | Re: Dependency management in Python? |
| References | <6b91570c-9cf0-4caf-8727-b463c6d098cd@googlegroups.com> <CABRP1o8GmneDdRgn4E9heyUBdCmgm20yegpx5zEaDXFVokPCNg@mail.gmail.com> <mailman.420.1357945494.2939.python-list@python.org> <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 <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.444.1357994685.2939.python-list@python.org> (permalink) |
| 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 |
Show key headers only | View raw
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
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Dependency management in Python? Adelbert Chang <adelbertc@gmail.com> - 2013-01-11 14:23 -0800
Re: Dependency management in Python? Rodrick Brown <rodrick.brown@gmail.com> - 2013-01-11 17:34 -0500
Re: Dependency management in Python? Ian Foote <ian@feete.org> - 2013-01-11 23:04 +0000
Re: Dependency management in Python? Adelbert Chang <adelbertc@gmail.com> - 2013-01-11 18:42 -0800
Re: Dependency management in Python? rh <richard_hubbe11@lavabit.com> - 2013-01-11 21:33 -0800
Re: Dependency management in Python? Thomas Bach <thbach@students.uni-mainz.de> - 2013-01-12 13:43 +0100
Re: Dependency management in Python? Adelbert Chang <adelbertc@gmail.com> - 2013-01-11 18:42 -0800
Re: Dependency management in Python? Dieter Maurer <dieter@handshake.de> - 2013-01-12 08:14 +0100
Re: Dependency management in Python? alex23 <wuwei23@gmail.com> - 2013-01-11 23:38 -0800
csiph-web