Python 3.x 无法在生存期内导入估算模块

Python 3.x 无法在生存期内导入估算模块,python-3.x,compiler-errors,lifetimes-python,Python 3.x,Compiler Errors,Lifetimes Python,我正在尝试分析客户购物数据,我正在使用Python中的lifetimes包进行分析。我无法在lifetime中导入估算模块 from lifetimes.utils import * from lifetimes.plotting import * from lifetimes.estimation import * from lifetimes.estimation import * ModuleNotFoundError:没有名为“lifetimes.estimation”的模块安装l

我正在尝试分析客户购物数据,我正在使用Python中的lifetimes包进行分析。我无法在lifetime中导入估算模块

from lifetimes.utils import *
from lifetimes.plotting import *

from lifetimes.estimation import *

from lifetimes.estimation import *

ModuleNotFoundError:没有名为“lifetimes.estimation”的模块安装lifetimes版本0.2.2.2


为了防止其他人面临同样的问题(由于以下冗余代码),我们考虑对其进行更多的扩展

lifetimes包中不再提供lifetimes.estimation模块(根据)。此模块中的所有功能都已移动到其他模块,您确实不再需要此模块。继续使用最新型号版本0.11.1,不要导入此特定子模块

pip install Lifetimes==0.2.2.2