Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Background: The team I work with hopes to offer a web service on Heroku, exposing some python code we developed on windows 7. To do so, we try to build an environment on the venv sandbox which we will replicate on Heroku. We thus need to use pip install rather than download compiled libraries, as we did when we developed our code (on windows 7).

Issue: To install rpclib, the SOAP/WSDL interface we hope to use, we first need to install lxml and pytz. The latter is not an issue, but lxml requires libxml2 and libxslt ,all three of which are not accessible from PIP on windows 7.

Question: How does one install rpclib on venv on windows 7?

Thanks for reading our post.

Dr. Avner Ottensooser

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.