将树对象导入python

时间:2014-04-23 06:52:42

标签: python python-2.7

嘿所以我试图运行这个开源的GitHub python脚本,它是一个树对象

https://github.com/caesar0301/pyTree

我安装了它,但每当我输入

tree = Tree()

我收到此错误

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'Tree' is not defined`

我不知道发生了什么

1 个答案:

答案 0 :(得分:0)

我看了the examples

看起来您导入了模块,但没有导入类。

将您的代码更改为此代码,它应该可以正常工作

from treelib import Tree

tree = Tree()

或者你可以这样做

import treelib

tree = treelib.Tree()