Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Getting Started Documentation #1507

Merged
merged 4 commits into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 $``.

Expand Down Expand Up @@ -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 $``.

Expand Down Expand Up @@ -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:

Expand Down
Loading