在库中是以这种方式导入的特征:
from enthought.traits.api import Int, Float
# and the other bad thing:
from enthought.traits.ui.api import View
但是我已经通过 pip ( pip install traits
) 安装了特征,并且在这个版本中,特征是这样导入的:
from traits.api import Int, Float
# here is
from traitsui.api import View
真是一团糟!
如何使用 enthougt.traits 等?或者我如何创建一个简单的包装器,以便获得一个伪思考模块?
(我也试过pip install ets
,但不是所有的包都想编译。)