enthought进口:enthought.traits.api vs traits.api

时间:2012-05-29 20:39:58

标签: python enthought

在库中是以这种方式导入的特征:

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,但并非所有的包都想要编译。)

1 个答案:

答案 0 :(得分:3)

安装etsproxygithub)模块以实现向后兼容。