2016-12-13 17:37:22 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
|
|
|
|
|
|
echo "PYTHON is $PYTHON"
|
|
|
|
|
|
|
|
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 [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "linux" ]]; then
|
|
|
|
sudo apt-get update
|
2019-02-26 23:07:43 -08:00
|
|
|
sudo apt-get install -y build-essential curl python-dev python-numpy python-pip unzip tmux gdb
|
2017-07-13 09:23:04 -07:00
|
|
|
# Install miniconda.
|
2018-09-06 03:05:04 +08:00
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda2-4.5.4-Linux-x86_64.sh -O miniconda.sh -nv
|
2017-07-13 09:23:04 -07:00
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
|
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
2019-03-07 15:59:30 -08:00
|
|
|
pip install -q scipy tensorflow cython==0.29.0 gym opencv-python-headless pyyaml pandas==0.23.4 requests \
|
2019-03-22 17:45:55 +08:00
|
|
|
feather-format lxml openpyxl xlrd py-spy setproctitle faulthandler pytest-timeout mock flaky networkx tabulate psutil
|
2016-12-13 17:37:22 -08:00
|
|
|
elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "linux" ]]; then
|
|
|
|
sudo apt-get update
|
2019-02-26 23:07:43 -08:00
|
|
|
sudo apt-get install -y python-dev python-numpy build-essential curl unzip tmux gdb
|
2016-12-13 17:37:22 -08:00
|
|
|
# Install miniconda.
|
2018-09-06 03:05:04 +08:00
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh -O miniconda.sh -nv
|
2016-12-13 17:37:22 -08:00
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
|
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
2019-02-28 12:17:32 -08:00
|
|
|
pip install -q scipy tensorflow cython==0.29.0 gym opencv-python-headless pyyaml pandas==0.23.4 requests \
|
2019-03-22 17:45:55 +08:00
|
|
|
feather-format lxml openpyxl xlrd py-spy setproctitle pytest-timeout flaky networkx tabulate psutil
|
2016-12-13 17:37:22 -08:00
|
|
|
elif [[ "$PYTHON" == "2.7" ]] && [[ "$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."
|
2018-02-20 15:21:32 -08:00
|
|
|
brew update > /dev/null
|
2016-12-13 17:37:22 -08:00
|
|
|
fi
|
2017-07-13 09:23:04 -07:00
|
|
|
# Install miniconda.
|
2018-09-06 03:05:04 +08:00
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda2-4.5.4-MacOSX-x86_64.sh -O miniconda.sh -nv
|
2017-07-13 09:23:04 -07:00
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
|
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
2019-03-07 15:59:30 -08:00
|
|
|
pip install -q cython==0.29.0 tensorflow gym opencv-python-headless pyyaml pandas==0.23.4 requests \
|
2019-03-22 17:45:55 +08:00
|
|
|
feather-format lxml openpyxl xlrd py-spy setproctitle faulthandler pytest-timeout mock flaky networkx tabulate psutil
|
2016-12-13 17:37:22 -08:00
|
|
|
elif [[ "$PYTHON" == "3.5" ]] && [[ "$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."
|
2018-02-20 15:21:32 -08:00
|
|
|
brew update > /dev/null
|
2016-12-13 17:37:22 -08:00
|
|
|
fi
|
|
|
|
# Install miniconda.
|
2018-09-06 03:05:04 +08:00
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-MacOSX-x86_64.sh -O miniconda.sh -nv
|
2016-12-13 17:37:22 -08:00
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
|
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
2019-02-26 23:07:43 -08:00
|
|
|
pip install -q cython==0.29.0 tensorflow gym opencv-python-headless pyyaml pandas==0.23.4 requests \
|
2019-03-22 17:45:55 +08:00
|
|
|
feather-format lxml openpyxl xlrd py-spy setproctitle pytest-timeout flaky networkx tabulate psutil
|
2017-03-01 23:34:44 -08:00
|
|
|
elif [[ "$LINT" == "1" ]]; then
|
|
|
|
sudo apt-get update
|
2019-02-26 23:07:43 -08:00
|
|
|
sudo apt-get install -y build-essential curl unzip
|
2017-03-01 23:34:44 -08:00
|
|
|
# Install miniconda.
|
2018-09-06 03:05:04 +08:00
|
|
|
wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh -O miniconda.sh -nv
|
2017-03-01 23:34:44 -08:00
|
|
|
bash miniconda.sh -b -p $HOME/miniconda
|
2017-03-21 12:57:54 -07:00
|
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
|
|
|
# Install Python linting tools.
|
2018-05-20 16:15:06 -07:00
|
|
|
pip install -q flake8 flake8-comprehensions
|
2017-08-21 23:48:20 -07:00
|
|
|
elif [[ "$LINUX_WHEELS" == "1" ]]; then
|
|
|
|
sudo apt-get install docker
|
|
|
|
sudo usermod -a -G docker travis
|
|
|
|
elif [[ "$MAC_WHEELS" == "1" ]]; then
|
2018-02-20 15:21:32 -08:00
|
|
|
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 > /dev/null
|
|
|
|
fi
|
2018-03-08 23:22:23 -08:00
|
|
|
brew install cmake pkg-config automake autoconf libtool openssl bison > /dev/null
|
2018-02-20 15:21:32 -08:00
|
|
|
# We use true to avoid exiting with an error code because the brew install can
|
|
|
|
# fail if a package is already installed.
|
2017-08-21 23:48:20 -07:00
|
|
|
true
|
2016-12-13 17:37:22 -08:00
|
|
|
else
|
|
|
|
echo "Unrecognized environment."
|
|
|
|
exit 1
|
|
|
|
fi
|