mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
12 lines
369 B
Bash
Executable file
12 lines
369 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Installs serve dependencies ("ray[serve]") 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 serve dependencies
|
|
python -m pip install -U "ray[serve]"
|