setup.sh 305 Bytes
Newer Older
Bill Wu's avatar
Bill Wu committed
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# download automlbenchmark repository
if [ ! -d './automlbenchmark' ] ; then
    git clone https://github.com/openml/automlbenchmark.git --branch stable --depth 1
fi

# install dependencies 
pip3 install -r automlbenchmark/requirements.txt
pip3 install -r requirements.txt --ignore-installed