#!/bin/bash # The install script for the Grow SDK. # Learn more: http://growsdk.org URL=https://raw.githubusercontent.com/grow/pygrow/master/install.py function download { scratch=$(mktemp -d -t tmp.XXXXXXXXXX) || exit script_file=$scratch/install_growsdk.py curl -fsSL $URL > $script_file || exit chmod 775 $script_file python $script_file } download < /dev/tty