6
Problem resolved…
I’ve changed requirements.txt file to not using specified version of lxml, and everything installed fine.
I guess that specified version was too old for python 3.7
0
Check this readme: https://lxml.de/installation.html
I’m guessing compilation of lxml fails, as described in lxml docs, you can either provide binary distribution for your platform for instance python3-lxml.
Or setup environment to make it possible to build with these prequisites:
libxml2-dev libxslt-dev python-dev
- [Django]-Django download Excel File with AJAX
- [Django]-How to increment a numeric string in Python
- [Django]-Mock a model method in Django
- [Django]-Logout message using django-allauth and redirect to home page
- [Django]-How to save foreign keys using django-rest-framework
- [Django]-Error in shell: doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS
- [Django]-Id(number) path in urls
- [Django]-Filtering an evaluated QuerySet
Source:stackexchange.com