首页 > 解决方案 > 在 Windows 上安装 Auto-Sklearn 会出错

问题描述

Stackoverflow 中有很多关于 AutoSklearn 错误的主题。

但是每个错误都不一样,每个环境都不一样

我有 Windows 10 64 位

我安装了 Anaconda3

当我尝试按照这些步骤

https://automl.github.io/auto-sklearn/stable/installation.html

第1步 :

curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install

我收到这个错误

'xargs' is not recognized as an internal or external command,
operable program or batch file.

如何解决?

当我尝试第二步时

pip install auto-sklearn

ValueError: Detected unsupported operating system: win32. Please check the compability information of auto-sklearn: http://automl.github.io/auto-sklearn/stable/installation.html#windows-osx-compability

我认为这是由于第 1 步失败。

谁能帮我解决这个错误?

标签: pythonanaconda

解决方案


AutoSklearn 仅适用于 unix 系统。如果您在此处看到 System requirements 中的第一行,则它是 Linux 操作系统。

原因是资源模块仅在 linux 系统中可用。在https://automl.github.io/auto-sklearn/stable/installation.html#windows上查找有关它的详细信息


推荐阅读