Open fabiana001 opened 5 years ago
Python is a bit quirky with its dependencies. Since dragnet
needs to have lxml
Cython
and numpy
installed to be "built", it cannot be installed before those dependencies are installed.
So if you do:
pip install lxml numpy Cython
and then
pip install dragnet
It should then work.
Hi, I have a python project with the following setup.py:
I'm using python 3.7
When I try to install the project dependencies I have the following error:
I obtain the same error if I put
lxml
in theinstall_requires
param (obviously I put lxml before dragnet). What I'm doing wrong?