Skip to content
Merged
Show file tree
Hide file tree
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
26 changes: 18 additions & 8 deletions docs/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ After installing, make sure you have the **micromamba** or **conda** command ava
.. code-block:: bash

# Create a new environment for the simstack client:
micromamba create --name=simstack simstack -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
micromamba create --name=simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
# Activate the environment
micromamba activate simstack
# and run simstack:
Expand All @@ -40,9 +40,9 @@ Finally, if you want to update an existing simstack install:
.. code-block:: bash

micromamba activate simstack
micromamba update simstack -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
micromamba update simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
# Or if you need a specific version, example 1.2.5:
micromamba install simstack=1.2.5 -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
micromamba install simstack=1.2.5 -c https://repo.prefix.dev/simstack simstack -c conda-forge


The client version requires passwordless via ``ssh`` access to communicate with the HPC. If you do not have passwordless via
Expand Down Expand Up @@ -74,21 +74,22 @@ If you don't have the ``ssh`` keys, use the steps below to generate them.
* Please choose the HPC where you want to have passwordless access.

.. code-block:: bash

ssh-copy-id <username>@<computer name or IP address>

* Test the connectivity of your passwordless ``ssh`` by running one of the commands below in the **Powershell** prompt.

.. code-block:: bash

ssh <username>@<computer name or IP address>

* After completing the above steps, run the below commands.

.. code-block:: bash

cd simstack_linux
./run_simstack.sh
micromamba activate simstack
# and run simstack:
simstack


Installation on Windows
Expand Down Expand Up @@ -118,7 +119,16 @@ If you don't have the ``ssh`` keys, use the steps below to generate them.
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh <username>@<computer name or IP address> "cat >> .ssh/authorized_keys"


* After completing the above steps, double-click on ``run-simstack`` and be happy.
* The installation and execution works similar to Linux above:

.. code-block:: bash

# Create a new environment for the simstack client:
micromamba create --name=simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
# Activate the environment
micromamba activate simstack
# and run simstack:
simstack

**Testing the connectivity**

Expand Down
2 changes: 1 addition & 1 deletion docs/installation/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ After installing, make sure you have the **micromamba** command available in you
.. code-block:: bash

# Create a new environment for simstack client:
micromamba create --name=simstack_server_v6 simstackserver -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
micromamba create --name=simstack_server_v6 simstackserver -c https://repo.prefix.dev/simstack simstackserver -c conda-forge
# Activate the environment to see if it exists
micromamba activate simstack_server_v6

Expand Down
Loading