<div dir="ltr">Hi Michal,<br><div class="gmail_extra"><br><div class="gmail_quote">On 30 July 2017 at 13:53, Michal Moiseev <span dir="ltr"><<a href="mailto:michal.moiseev@firmitas.solutions" target="_blank">michal.moiseev@firmitas.solutions</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">I couldn't seem to fine a solution for the lxml package, the pypy implementation - lxml-cffi is only for python 2.x, and when installing lxml, it is also seems to work only for python 2.x, and the following error is printed when trying to import:</div></blockquote><div><br></div><div>This used to be a known problem with Cython: <a href="https://github.com/cython/cython/pull/1631">https://github.com/cython/cython/pull/1631</a> .  It has been fixed in Cython 0.26.  The issue here is that lxml comes with pre-Cythonized files produced by Cython 0.25.2.<br></div><br></div>Apart from waiting for the next release of lxml, you could manually install lxml.  To do so, download the source, and run:<br><br>    pypy3 -m pip install cython<br>    pypy3 setup.py build --with-cython      # forced re-Cythonize<br></div><div class="gmail_extra">    pypy3 setup.py install<br><br><br></div><div class="gmail_extra">A bientôt,<br><br></div><div class="gmail_extra">Armin.<br></div></div>