mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00
38 lines
708 B
Bash
38 lines
708 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# Cause the script to exit if a single command fails
|
||
|
set -e
|
||
|
|
||
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
||
|
|
||
|
echo "PYTHON is $PYTHON"
|
||
|
|
||
|
cython_examples="$ROOT_DIR/../examples/cython"
|
||
|
|
||
|
if [[ "$PYTHON" == "2.7" ]]; then
|
||
|
|
||
|
pushd $cython_examples
|
||
|
pip install scipy
|
||
|
python setup.py install --user
|
||
|
popd
|
||
|
|
||
|
elif [[ "$PYTHON" == "3.5" ]]; then
|
||
|
export PATH="$HOME/miniconda/bin:$PATH"
|
||
|
|
||
|
pushd $cython_examples
|
||
|
pip install scipy
|
||
|
python setup.py install --user
|
||
|
popd
|
||
|
|
||
|
elif [[ "$LINT" == "1" ]]; then
|
||
|
export PATH="$HOME/miniconda/bin:$PATH"
|
||
|
|
||
|
pushd $cython_examples
|
||
|
python setup.py install --user
|
||
|
popd
|
||
|
|
||
|
else
|
||
|
echo "Unrecognized Python version."
|
||
|
exit 1
|
||
|
fi
|