在库中是以这种方式导入的特征:
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等?或者我如何创建一个简单的包装器,以便我得到一个伪enthought模块?
(我也试过pip install ets
,但并非所有的包都想要编译。)