質問

I want to work with the xml.etree.ElementTree module of python but I'm not able to import it to the script, ImportError: No module named etree.ElementTree. I'm totally sure that module is working because I'm able to run it without eclipse! How to make it work with Eclipse?

役に立ちましたか?

解決

add the xml's module paths in Preferance->PyDev->Interpreters->Python Interpreter C:\Python27\lib\xml

and import module in this way import etree.ElementTree as ET

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top