diff --git a/docs/source/reference/_create_conda_env.rst b/docs/source/reference/_create_conda_env.rst index d2703a35..1c3d7ee2 100644 --- a/docs/source/reference/_create_conda_env.rst +++ b/docs/source/reference/_create_conda_env.rst @@ -290,7 +290,7 @@ Note that the installation takes several minutes.
$ cd ~/bluesky $ conda env create \ - --force \ + -y \ -n bluesky_2023_3 \ -f ./environments/environment_2023_3.yml \ --solver=libmamba @@ -299,7 +299,7 @@ Note that the installation takes several minutes.Details
-
- The
--force
option will replace any existing environment by this +- The
-y
option will replace any existing environment by this name without asking for confirmation. Remove this option if you wish.- The
-n bluesky_2023_3
sets the name of the conda environment to be created.