mirror of
https://github.com/wassname/ray.git
synced 2026-07-12 20:08:45 +08:00
d1974afbab
* Add setup.py and travis. * Add script to install dependencies for travis. * Put Arrow into thirdparty. * Add .gitmodules file. * Install boost dependencies. * Make tests verbose. * Build arrow and numbuf in setup.py. * Change build_ext to install. * Switch develop to install in pip. * Test * fix numbuf build and installation * make import numbuf work * fix documentation * fix tests * quotes
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
|
|
platform="unknown"
|
|
unamestr="$(uname)"
|
|
if [[ "$unamestr" == "Linux" ]]; then
|
|
echo "Platform is linux."
|
|
platform="linux"
|
|
elif [[ "$unamestr" == "Darwin" ]]; then
|
|
echo "Platform is macosx."
|
|
platform="macosx"
|
|
else
|
|
echo "Unrecognized platform."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $platform == "macosx" ]]; then
|
|
# check that brew is installed
|
|
which -s brew
|
|
if [[ $? != 0 ]]; then
|
|
echo "Could not find brew, please install brew (see http://brew.sh/)."
|
|
exit 1
|
|
else
|
|
echo "Updating brew."
|
|
brew update
|
|
fi
|
|
fi
|
|
|
|
if [[ $platform == "linux" ]]; then
|
|
# These commands must be kept in sync with the installation instructions.
|
|
sudo apt-get update
|
|
sudo apt-get install -y cmake build-essential autoconf libtool python-dev python-numpy python-pip libboost-all-dev
|
|
elif [[ $platform == "macosx" ]]; then
|
|
# These commands must be kept in sync with the installation instructions.
|
|
brew install cmake automake autoconf libtool boost
|
|
sudo easy_install pip
|
|
sudo pip install numpy --ignore-installed six
|
|
fi
|