On Sun, 2010-12-19 at 12:28 -0800, jona wrote:
> Everything seems to get smooth until the setup.
>
> What I get is :
[... snip ...]
> pkg_resources.DistributionNotFound: lxml>=2.2
>
> I there something I was missing ?
Yes, as the message says, you probably didn't install lxml, which is
required by PyF.Services.
Can you find it in your virtualenv?
If not, you can install it with the following command (with the
virtualenv activated):
$ easy_install "lxml>=2.2"
It would be useful to know why you don't have it. Do you still have the
logs from running the bootstrap script?
--
Mathieu
This is indeed required to build lxml.
> launching the bootstrap script again and then
> it works, thanks !
Yeah, that's what I suspected.
Unfortunately, easy_install is not transactional. So if one of the stuff
the bootstrap script tries to install fails for some reason, it just
prints an error and goes on to install the rest, and (as happened to
you) the user can just miss the error message.
I'm glad you got it to work though.
Cheers,
--
Mathieu