1

I am trying to setup pyquery,but is giving me a hard time.

There is .py file setup.py , which imports from setuptools

I also read lxml can be used instead of that ,i have installed lxml.

Could anyone guide me with this installation.I also did read this link

Community
  • 1
  • 1
Vinod K
  • 1,885
  • 11
  • 35
  • 45

2 Answers2

1

PyQuery is just an api wrapper for lxml.

Once you get lxml installed you can easily install pyquery

I guess that your problem occur because setuptools try to install lxml and failed at compilation time

gawel
  • 2,038
  • 14
  • 16
  • Hey, Just copied the folder to c:/python27/lib/site-packages. It works now . Thanks for your reply :) – Vinod K Dec 13 '11 at 07:35
1

Added the folder Pyquery to to python27/lib/site-packages.

It works now.

Vinod K
  • 1,885
  • 11
  • 35
  • 45