mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 18:06:25 +08:00
16 lines
268 B
Bash
Executable File
16 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 "$@"
|