Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #13278

Re: Replace pip installed package with latest git version?

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <rgmicky@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.018
X-Spam-Evidence '*H*': 0.96; '*S*': 0.00; 'suppose': 0.05; 'subject:version': 0.07; 'am,': 0.12; "'bout": 0.16; 'crawling': 0.16; 'name)': 0.16; 'subject:package': 0.16; 'sudo': 0.16; 'then:': 0.16; 'wrote:': 0.16; 'wed,': 0.17; 'help.': 0.19; 'header:In-Reply-To:1': 0.22; '(or': 0.23; 'sep': 0.23; 'originally': 0.24; 'sender:addr:gmail.com': 0.25; 'message- id:@mail.gmail.com': 0.29; 'subject:?': 0.31; 'it.': 0.33; 'to:addr:python-list': 0.33; 'received:209.85.212': 0.34; 'yet,': 0.34; 'using': 0.37; 'but': 0.37; 'install': 0.37; 'think': 0.38; 'received:google.com': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.39; 'version:': 0.39; 'subject:with': 0.39; 'to:addr:python.org': 0.39; 'more': 0.60; 'your': 0.61; 'back': 0.62; 'hole': 0.84; 'subject:latest': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:content-type; bh=ipyeNnUteH/GodkOpkqjSO+gCs3pexqnIXK0kpZne6w=; b=BBAYl3KUACMJS/MCKh2CW+VbOQIZljzZ0W6NNl7rnF1ZyoptFx8M3BZSd/T5Codw0i JqToaLvilo8yXKnV2VVqquJraSiVaBFI7/srJAkHNNyNxkMaW8uC+r9+b5pcspBFNWk7 K4mQtx4Y3xGCSr52skD48JhQFknHIBhDHvsA4=
MIME-Version 1.0
Sender rgmicky@gmail.com
In-Reply-To <CALri7Mn9Z2EnFF+PFP337hQ19+xkYDsmH5TZGqwc9=QV_M=m7g@mail.gmail.com>
References <CAO+9iGeBHrshizbyava7fqC6QQCYeuJ4f-1Qjf1zXZ_43sgT4g@mail.gmail.com> <CALri7Mn9Z2EnFF+PFP337hQ19+xkYDsmH5TZGqwc9=QV_M=m7g@mail.gmail.com>
From Micky Hulse <mickyhulse.lists@gmail.com>
Date Wed, 14 Sep 2011 10:06:35 -0700
X-Google-Sender-Auth rxRlvCpy6Ri7hHHUDjpDQ-H2bsM
Subject Re: Replace pip installed package with latest git version?
To python-list@python.org
Content-Type text/plain; charset=UTF-8
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
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.1123.1316020037.27778.python-list@python.org> (permalink)
Lines 23
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1316020037 news.xs4all.nl 2509 [2001:888:2000:d::a6]:37121
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:13278

Show key headers only | View raw


On Wed, Sep 14, 2011 at 9:58 AM, Micky Hulse <mickyhulse.lists@gmail.com> wrote:
> Not sure if you got an answer yet, but this is how I would do it:
> sudo pip install --upgrade
> git+git://github.com/jedie/python-creole.git#egg=python-creole

Having read your message more closely, it sounds like you did not
install the package originally form github? If that's the case, I
don't think using --upgrade will be of any help. Sorry 'bout that.

I suppose you would have to uninstall the original PIP version:

sudo pip uninstall egg-name.egg (or just the package name)

... and then:

sudo pip install -e
git+git://github.com/jedie/python-creole.git#egg=python-creole

Although, I am not sure if that is the best way to do it.

Crawling back into my hole now. :)

Micky

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Replace pip installed package with latest git version? Micky Hulse <mickyhulse.lists@gmail.com> - 2011-09-14 10:06 -0700

csiph-web