View Single Post
Old 10-26-2017, 08:27 PM   #17
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,664
Karma: 205039118
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by duns View Post
Maybe I have too many Python on my kubuntu?
It's possible I guess. I certainly don't think python 3.7 is standard on 17.10. You may not have a stable python3 environment at this point.

In any case, you need to verify that lxml is working properly outside of Sigil. Until it does, we probably can't be much help. From a terminal, you should be able to start an interactive python shell with:

Code:
python3
Verify which version of python is being used and then use:
(pressing enter after each command)

Code:
import sys
Code:
from lxml import etree
and see if the import is successful.

Then print your sys.path and report back the results

Code:
print(sys.path)
Exit the interactive python shell with:

Code:
exit()

Last edited by DiapDealer; 10-26-2017 at 08:29 PM.
DiapDealer is offline   Reply With Quote