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


Groups > comp.lang.python > #13279

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!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <alec.taylor6@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.003
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'suppose': 0.05; 'subject:version': 0.07; 'am,': 0.12; "'bout": 0.16; 'crawling': 0.16; 'from:addr:alec.taylor6': 0.16; 'from:name:alec taylor': 0.16; 'name)': 0.16; 'subject:package': 0.16; 'sudo': 0.16; 'then:': 0.16; 'uninstalling': 0.16; 'worked.': 0.16; 'cc:addr :python-list': 0.16; 'wrote:': 0.16; 'wed,': 0.17; 'thanks,': 0.18; 'received:209.85.210.174': 0.18; 'received:mail- iy0-f174.google.com': 0.18; 'help.': 0.19; 'cc:no real name:2**0': 0.20; 'cc:2**0': 0.22; 'header:In-Reply-To:1': 0.22; '(or': 0.23; 'sep': 0.23; 'originally': 0.24; 'thu,': 0.28; 'url:mailman': 0.28; 'message-id:@mail.gmail.com': 0.29; 'cc:addr:python.org': 0.30; 'subject:?': 0.31; 'it.': 0.33; 'url:listinfo': 0.33; '...': 0.34; 'yet,': 0.34; 'url:python': 0.36; 'using': 0.37; 'but': 0.37; 'install': 0.37; 'think': 0.38; 'received:google.com': 0.38; 'url:org': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.39; 'version:': 0.39; 'subject:with': 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:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=CdJ/0r2xlJBjS5nSkoiDPwBWaEad6cZC+FwEBtdRHLE=; b=EO0asnR53kn7ANazd+kwcjkjUoC7H6OOAzmyLWEiI1x7j3QuMhevt7DaN6UeTRMS1Q pdsjkfHFc6ZDCoiBI9s1M+4xP26tVIJ1SI6O5FXDp7O9sh61x/sYKTg9jBp1vry3lAw1 9xD0PwrBmGAG9LJXvmDMRY5oQo2qeXAP3lj8M=
MIME-Version 1.0
In-Reply-To <CALri7MkCYnszsYi2ww+0Ar7U6KD4ZtfRHC+=71ZhzVvDUA0tgQ@mail.gmail.com>
References <CAO+9iGeBHrshizbyava7fqC6QQCYeuJ4f-1Qjf1zXZ_43sgT4g@mail.gmail.com> <CALri7Mn9Z2EnFF+PFP337hQ19+xkYDsmH5TZGqwc9=QV_M=m7g@mail.gmail.com> <CALri7MkCYnszsYi2ww+0Ar7U6KD4ZtfRHC+=71ZhzVvDUA0tgQ@mail.gmail.com>
Date Thu, 15 Sep 2011 03:11:40 +1000
Subject Re: Replace pip installed package with latest git version?
From Alec Taylor <alec.taylor6@gmail.com>
To Micky Hulse <mickyhulse.lists@gmail.com>
Content-Type text/plain; charset=ISO-8859-1
Cc python-list@python.org
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.1124.1316020303.27778.python-list@python.org> (permalink)
Lines 31
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1316020303 news.xs4all.nl 2465 [2001:888:2000:d::a6]:56754
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:13279

Show key headers only | View raw


Thanks, uninstalling first worked.

:D

On Thu, Sep 15, 2011 at 3:06 AM, Micky Hulse <mickyhulse.lists@gmail.com> wrote:
> 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
> --
> http://mail.python.org/mailman/listinfo/python-list
>

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


Thread

Re: Replace pip installed package with latest git version? Alec Taylor <alec.taylor6@gmail.com> - 2011-09-15 03:11 +1000

csiph-web