From a76aa005df72f57901824aea03215e5c9c9b8176 Mon Sep 17 00:00:00 2001 From: Loris Gaven Date: Tue, 31 Oct 2023 14:59:59 +0100 Subject: [PATCH] Update hands-on.mdx python version mlagents now requires Python >=3.10.1, <=3.10.12 --- units/en/unit7/hands-on.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/units/en/unit7/hands-on.mdx b/units/en/unit7/hands-on.mdx index 51bd1d7..c868015 100644 --- a/units/en/unit7/hands-on.mdx +++ b/units/en/unit7/hands-on.mdx @@ -57,10 +57,10 @@ We're constantly trying to improve our tutorials, so **if you find some issues We advise you to use [conda](https://docs.conda.io/en/latest/) as a package manager and create a new environment. -With conda, we create a new environment called rl with **Python 3.9**: +With conda, we create a new environment called rl with **Python 3.10.12**: ```bash -conda create --name rl python=3.9 +conda create --name rl python=3.10.12 conda activate rl ```