mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
15 lines
268 B
Bash
Executable file
15 lines
268 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
|
|
install_cython_examples() {
|
|
(
|
|
cd "${ROOT_DIR}/../../doc/examples/cython"
|
|
pip install scipy
|
|
python setup.py install --user
|
|
)
|
|
}
|
|
|
|
install_cython_examples "$@"
|