嘿所以我试图运行这个开源的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`
我不知道发生了什么
答案 0 :(得分:0)
我看了the examples。
看起来您导入了模块,但没有导入类。
将您的代码更改为此代码,它应该可以正常工作
from treelib import Tree
tree = Tree()
或者你可以这样做
import treelib
tree = treelib.Tree()