How Can I Set Up Lxml And Pypy On Yosemite?
I wanted to do some learning with lxml and pypy, so I decided to get it set up on my Yosemite Mac. But after three days of trying, I still haven't been able to try lxml, because I
Solution 1:
PyPy does not work with lxml (at least not very well, even if it accidentally does), due to lxml being built on top of Cython which uses CPython C API bindings. Consider using lxml-cffi instead https://github.com/amauryfa/lxml/tree/cffi
Post a Comment for "How Can I Set Up Lxml And Pypy On Yosemite?"