Skip to content

Instantly share code, notes, and snippets.

@christianklotz
Created October 17, 2016 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianklotz/46270402552911e73d589072a8f76e56 to your computer and use it in GitHub Desktop.
Save christianklotz/46270402552911e73d589072a8f76e56 to your computer and use it in GitHub Desktop.
Shell script to install Google's OR tools
#!/bin/bash
echo "Dowloading Google's Operations Research tools...";
ORTOOLS_TAR=or-tools.python.examples_v4.4.3842.tar.gz;
ORTOOLS_TAR_URL=https://github.com/google/or-tools/releases/download/v4.4/${ORTOOLS_TAR};
curl -O -L ${ORTOOLS_TAR_URL};
tar -xzf ${ORTOOLS_TAR}; cd ortools_examples; python setup.py install;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment