blob: c6df6992d9e5c5a67269037c9e780b98afde56a1 [file] [log] [blame]
Geoffrey Irving4c85a082016-03-16 12:20:34 -08001#!/usr/bin/env bash
Manjunath Kudlurf41959c2015-11-06 16:27:58 -08002
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -08003set -e
4set -o pipefail
5
A. Unique TensorFlower73ea2872017-07-25 13:30:03 -07006if [ -z "$PYTHON_BIN_PATH" ]; then
7 PYTHON_BIN_PATH=$(which python || which python3 || true)
A. Unique TensorFlowerabe08772017-06-07 11:34:47 -07008fi
9
A. Unique TensorFlower73ea2872017-07-25 13:30:03 -070010# Set all env variables
11$PYTHON_BIN_PATH configure.py
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -080012
Andrew Harp51dbc462017-01-27 14:42:30 -080013
A. Unique TensorFlower73ea2872017-07-25 13:30:03 -070014echo "Configuration finished"