how to do easy_install to source code, not egg?

Diez B. Roggisch deets at nospam.web.de
Thu Sep 18 05:08:17 EDT 2008


dmitrey wrote:

> Hi all,
> how to do easy_install <some package> to source code, not egg?
> 
> (I don't mean "develop" option, it shouldn't call compiled egg-file).

$ easy_install --help

<snip/>
  --editable (-e)                Install specified packages in editable form
<snip/>

You additionally need to give the -b-option, like this:

$ easy_install -eb . FooBar

Diez



More information about the Python-list mailing list