0

I am using Jupyter notebook in Windows. I have tried many commands including the ones below from different pages, none could solve and i get errors. Has anyone found a workaround? even if i can install it in Google Colab would be fine.

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

or

sudo pip install autosklearn
datadigger
  • 101
  • 7

2 Answers2

0

I think you need Linux... see system requirements here: https://automl.github.io/auto-sklearn/master/installation.html

pip install auto-sklearn

worked for me using Linux. Then

import autosklearn.

0

Autosklearn version 0.10.0 works fine on google colab

!pip install auto-sklearn==0.10.0

You might need additional commands as shown in this answer

Colab might ask you to restart itself , after which the autosklearn import would work

Mohit Burkule
  • 136
  • 1
  • 6