From ef6e16c2e88edcd08b69db2eb1e28570a5b57ede Mon Sep 17 00:00:00 2001 From: Mizux Date: Fri, 26 Mar 2021 16:12:14 +0100 Subject: [PATCH] Update example/python/README.md --- examples/python/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/python/README.md b/examples/python/README.md index 6591c419fb..b916ca28d5 100644 --- a/examples/python/README.md +++ b/examples/python/README.md @@ -1,8 +1,8 @@ # Python examples The following examples showcase how to use OrTools. -These examples should work for both Python2.7+ and Python3.5+. +These examples should work for any Python3.6+. -We recommend that all projects you create target `Python 3.7`, +We recommend that all projects you create target `Python 3.9`, 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. @@ -10,6 +10,6 @@ Wherever you have `ortools` package installed, be sure to import it from your py # Execution For running the examples you can use the the following command: ```shell -python -m pip install --upgrade --user ortools -python .py +python3 -m pip install --upgrade --user ortools +python3 .py ```