我剛剛安裝了lxml用於解析python中的xml文件。我使用TextMate作爲IDE。問題是,當我嘗試導入lxml,(from lxml import entree)
然後我得到模塊導入錯誤Python
導入錯誤:「無模塊名爲LXML」
但是當我使用終端然後一切都很好
Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from lxml import etree
>>> root=etree.element("root")
>>> root=etree.Element("root")
>>> print (root.tag)
root
>>> root.append(etree.Element("child1"))
>>> child2 = etree.SubElement(root, "child2")
>>> child3 = etree.SubElement(root, "child3")
>>> print (etree.tostring(root,pretty_print=True))
<root>
<child1/>
<child2/>
<child3/>
</root>
這是很奇怪。它與TextMate有什麼關係?
建議請!
這似乎是一個完美的解決方案 – thchand