ImportError:没有名为' TkTreectrl'

时间:2016-03-15 15:31:11

标签: python-3.x tkinter

我是python的新手,我正在尝试使用MultiListbox。它说我需要导入TkTreectrl。我已经完成import TkTreectrl as treectrl但它仍然给我错误。

经过一些在线阅读后,我的印象是我应该在我的程序所在的文件夹中添加一些文件?

有人可以帮我理解我究竟能做到这一点吗?

1 个答案:

答案 0 :(得分:1)

以下是如何使文件运行的一个小清单:

1) Download the package file from the internet or get it whereever you can get it from
2) Unzip it (if nessecary)
3) Move it into the directory of your code file
4) Run your code, if there are no errors it will run.

我假设MultiListbox模块位于子文件夹中,您需要像这样调用它们:

from MultiListbox.subfolder import *

import Multilistbox

我希望我能帮到你!