I am getting error while running "from lxml import tree" on python3.6
>>> import lxml >>> from lxml import etree Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name 'etree' The same working on python3.4, I have tried many things to troubleshoot as below but didn't success.
python -m pip uninstall lxml python -m pip install lxml==3.6.0 pip install -t /usr/local/lib/python3.6/dist-packages lxml==3.6.0