how to do easy_install to source code, not egg?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dmitrey

    how to do easy_install to source code, not egg?

    Hi all,
    how to do easy_install <some packageto source code, not egg?

    (I don't mean "develop" option, it shouldn't call compiled egg-file).

    Thank you in advance,
    Dmitrey.
  • Diez B. Roggisch

    #2
    Re: how to do easy_install to source code, not egg?

    dmitrey wrote:
    Hi all,
    how to do easy_install <some packageto 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

    Comment

    Working...