From 291f4813462e8dbc61866ce9ccebe3b2cd6d080e Mon Sep 17 00:00:00 2001 From: Mohammed Yasin <32206511+Y-T-G@users.noreply.github.com> Date: Wed, 16 Oct 2024 08:42:04 +0800 Subject: [PATCH] Recommend newer Python version in conda docs (#16946) Co-authored-by: Glenn Jocher --- docs/en/guides/conda-quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/guides/conda-quickstart.md b/docs/en/guides/conda-quickstart.md index e37e8991..b958c85f 100644 --- a/docs/en/guides/conda-quickstart.md +++ b/docs/en/guides/conda-quickstart.md @@ -37,7 +37,7 @@ This guide provides a comprehensive introduction to setting up a Conda environme First, let's create a new Conda environment. Open your terminal and run the following command: ```bash -conda create --name ultralytics-env python=3.8 -y +conda create --name ultralytics-env python=3.11 -y ``` Activate the new environment: @@ -135,7 +135,7 @@ Congratulations! You have successfully set up a Conda environment, installed the Setting up a Conda environment for Ultralytics projects is straightforward and ensures smooth package management. First, create a new Conda environment using the following command: ```bash -conda create --name ultralytics-env python=3.8 -y +conda create --name ultralytics-env python=3.11 -y ``` Then, activate the new environment with: