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


Groups > comp.lang.python > #13278 > unrolled thread

Re: Replace pip installed package with latest git version?

Started byMicky Hulse <mickyhulse.lists@gmail.com>
First post2011-09-14 10:06 -0700
Last post2011-09-14 10:06 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

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

#13278 — Re: Replace pip installed package with latest git version?

FromMicky Hulse <mickyhulse.lists@gmail.com>
Date2011-09-14 10:06 -0700
SubjectRe: Replace pip installed package with latest git version?
Message-ID<mailman.1123.1316020037.27778.python-list@python.org>
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

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web