mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
13 lines
377 B
Bash
13 lines
377 B
Bash
![]() |
#!/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]"
|