From 005c13e0c254c1a5122556cb49a203572dc60863 Mon Sep 17 00:00:00 2001 From: Luiggi Tenorio Ku Date: Thu, 5 Oct 2023 12:01:58 +0200 Subject: [PATCH 1/2] update installation doc --- docs/source/installation/index.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/source/installation/index.rst b/docs/source/installation/index.rst index 52b1b6b6b..b0b0c59c8 100644 --- a/docs/source/installation/index.rst +++ b/docs/source/installation/index.rst @@ -109,21 +109,21 @@ The sequence of instructions to install Autosubmit and its dependencies with con .. warning:: This procedure is still WIP. You can follow the process at `issue #864 `_. We strongly recommend using the pip procedure. -.. code-block:: bash +If you don't have conda installed yet. We recommend following `Installing Miniconda `_. - # Download conda - wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.12.0-Linux-x86_64.sh - # Launch it - chmod +x ./Miniconda3-py39_4.12.0-Linux-x86_64.sh ; ./Miniconda3-py39_4.12.0-Linux-x86_64.sh +.. code-block:: bash + # Download git apt install git -y -q # Download autosubmit git clone https://earth.bsc.es/gitlab/es/autosubmit.git -b v4.0.0b cd autosubmit - # Create a Conda environment - conda env update -f environment.yml -n autosubmit python=3.7 + # Create a Conda environment from YAML with autosubmit dependencies + conda env create -f environment.yml -n autosubmitenv # Activate env - conda activate autosubmit + conda activate autosubmitenv + # Install autosubmit + pip install autosubmit # Test autosubmit autosubmit -v -- GitLab From a0d60686c0a7efeda09d3ac0dcf0b235914894e6 Mon Sep 17 00:00:00 2001 From: Luiggi Tenorio Ku Date: Thu, 5 Oct 2023 14:23:07 +0200 Subject: [PATCH 2/2] update installation doc --- docs/source/installation/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/installation/index.rst b/docs/source/installation/index.rst index b0b0c59c8..b89b88c2e 100644 --- a/docs/source/installation/index.rst +++ b/docs/source/installation/index.rst @@ -109,10 +109,10 @@ The sequence of instructions to install Autosubmit and its dependencies with con .. warning:: This procedure is still WIP. You can follow the process at `issue #864 `_. We strongly recommend using the pip procedure. -If you don't have conda installed yet. We recommend following `Installing Miniconda `_. +If you don't have conda installed yet, we recommend following `Installing Miniconda `_. .. code-block:: bash - + # Download git apt install git -y -q # Download autosubmit -- GitLab