Skip to content

Commit

Permalink
Update scikit-learn script
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Dec 3, 2020
1 parent 394be2e commit 551aeaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/sklearn
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ venv() {
msys*) source ${env_dir}/Scripts/activate;;
*) source ${env_dir}/bin/activate;;
esac
${python} -m pip install --quiet --upgrade pip
${python} -m pip install --quiet --upgrade pip setuptools wheel
}

clean() {
bold "sklearn clean"
rm -rf "./third_party/env/sklearn"
rm -rf "./third_party/source/sklearn"
}

sync() {
Expand All @@ -40,9 +41,8 @@ sync() {
install() {
bold "sklearn install"
venv
${python} -m pip install --quiet six cython pytest flake8 numpy scipy pylint astroid
${python} -m pip install --quiet scipy
${python} -m pip install --quiet --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn
# ${python} -m pip install --quiet ./third_party/source/sklearn
deactivate
}

Expand Down

0 comments on commit 551aeaf

Please sign in to comment.