【发布时间】:2022-01-05 15:44:16
【问题描述】:
我正在尝试通过pip install econml 安装econml。
但是我收到以下错误消息:
错误:为 shap 构建轮子失败运行 setup.py clean for shap 无法构建 econml shap 错误:无法为 econml,这是安装基于 pyproject.toml 的项目所必需的
有人知道我应该怎么做吗?
【问题讨论】:
标签: installation pip
我正在尝试通过pip install econml 安装econml。
但是我收到以下错误消息:
错误:为 shap 构建轮子失败运行 setup.py clean for shap 无法构建 econml shap 错误:无法为 econml,这是安装基于 pyproject.toml 的项目所必需的
有人知道我应该怎么做吗?
【问题讨论】:
标签: installation pip
首先确保您已经安装了所需的Python 版本!
如果你有仍然问题尝试使用这个command来解决这个问题:
pip install --upgrade pip setuptools wheel
或第二个选项:
pip install setuptools --upgrade
如果您有任何疑问,请查看project description、github docs 或官方docs。
【讨论】: