ray/ci/env/install-default.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
377 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# Installs default dependencies ("ray[default]") on top of minimal install
# Get script's directory: https://stackoverflow.com/a/246128
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# Installs minimal dependencies
"$SCRIPT_DIR"/install-minimal.sh
# Installs default dependencies
python -m pip install -U "ray[default]"