From c012a8adbc04f4681e065ec90299f83169ca156a Mon Sep 17 00:00:00 2001 From: MarcusHolly <96305519+MarcusHolly@users.noreply.github.com> Date: Thu, 10 Oct 2024 12:36:43 -0400 Subject: [PATCH] Update Getting Started Documentation (#1507) * Replaces instances of python 3.8 with 3.9 * Update docs/getting_started.rst Co-authored-by: Ludovico Bianchi * Update docs/getting_started.rst Co-authored-by: Ludovico Bianchi * Update docs/getting_started.rst Co-authored-by: Ludovico Bianchi --------- Co-authored-by: Ludovico Bianchi --- docs/getting_started.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 7bcb1d5de0..a608edcfd7 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -21,7 +21,7 @@ Create a Conda environment (in this example, named ``watertap``) where WaterTAP .. code-block:: shell - conda create --name watertap --yes python=3.8 pip=21.1 + conda create --name watertap --yes python=3.11 Activate the ``watertap`` environment using the command given below. If the environment was activated successfully, the environment's name will be displayed in the terminal prompt such as ``(watertap) project-directory $``. @@ -58,7 +58,7 @@ Create a Conda environment (in this example, named ``watertap``) where WaterTAP .. code-block:: shell - conda create --name watertap --yes python=3.8 pip=21.1 + conda create --name watertap --yes python=3.11 Activate the ``watertap`` environment using the command given below. If the environment was activated successfully, the environment's name will be displayed in the terminal prompt such as ``(watertap) project-directory $``. @@ -143,7 +143,7 @@ Create a Conda environment (in this example, named ``watertap-dev``) where Water .. code-block:: shell - conda create --name watertap-dev --yes python=3.8 pip=21.1 && conda activate watertap-dev + conda create --name watertap-dev --yes python=3.11 && conda activate watertap-dev Clone the WaterTAP repository to your local development machine using ``git clone``, then enter the newly created ``watertap`` subdirectory: