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