We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 875d32f commit 3254e98Copy full SHA for 3254e98
build_tools/azure/install.sh
@@ -66,7 +66,8 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
66
67
python -m pip install pandas matplotlib pyamg scikit-image
68
# do not install dependencies for lightgbm since it requires scikit-learn
69
- python -m pip install lightgbm --no-deps
+ # and install a version less than 3.0.0 until the issue #18316 is solved.
70
+ python -m pip install "lightgbm<3.0.0" --no-deps
71
elif [[ "$DISTRIB" == "conda-pip-scipy-dev" ]]; then
72
make_conda "python=$PYTHON_VERSION"
73
python -m pip install -U pip
0 commit comments