1

我有 Python 3.10.2、pip 22.0.3 和 pyqt5.15.2。尝试安装数据表时遇到此错误:

pip install datatable
Collecting datatable
  Using cached datatable-1.0.0.tar.gz (1.1 MB)
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  error: subprocess-exited-with-error

  × Preparing metadata (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> [35 lines of output]

我已经尝试从源代码构建数据表,卸载和重新安装 pip 以及多个不同的 python 版本(3.8 和更高版本),并花费大量时间查看数据表文档和 github 问题。任何帮助将不胜感激!

4

1 回答 1

0

对 python 3.10 的支持将在 Release 1.1.0 中;请参阅https://github.com/h2oai/datatable/issues/3210

根据https://github.com/h2oai/datatable/discussions/3207尝试main存储库中的最新版本:

pip install "git+https://github.com/h2oai/datatable.git"
于 2022-02-15T14:03:00.800 回答