Add Minimal README.md to examples

This commit is contained in:
Corentin Le Molgat
2018-11-08 10:21:52 +01:00
parent f10bb2d807
commit ef89d60403
5 changed files with 94 additions and 60 deletions

15
examples/python/README.md Normal file
View File

@@ -0,0 +1,15 @@
# Python examples
The following examples showcase how to use OrTools.
These examples should work for both Python2.7+ and Python3.5+.
We recommend that all projects you create target `Python 3.7`,
as this allows you to keep up-to-date with the latest Python frameworks.
Wherever you have `ortools` package installed, be sure to import it from your python file.
# Execution
For running the examples you can use the the following command:
```shell
python -m pip install --upgrade --user ortools
python <example>.py
```