在库中以这种方式导入特征:
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
,但并非所有软件包都希望编译。) 最佳答案