@@ -21,7 +21,7 @@ After installing, make sure you have the **micromamba** or **conda** command ava
2121.. code-block :: bash
2222
2323 # Create a new environment for the simstack client:
24- micromamba create --name=simstack simstack -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
24+ micromamba create --name=simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
2525 # Activate the environment
2626 micromamba activate simstack
2727 # and run simstack:
@@ -40,9 +40,9 @@ Finally, if you want to update an existing simstack install:
4040.. code-block :: bash
4141
4242 micromamba activate simstack
43- micromamba update simstack -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
43+ micromamba update simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
4444 # Or if you need a specific version, example 1.2.5:
45- micromamba install simstack=1.2.5 -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
45+ micromamba install simstack=1.2.5 -c https://repo.prefix.dev/simstack simstack -c conda-forge
4646
4747
4848 The client version requires passwordless via ``ssh `` access to communicate with the HPC. If you do not have passwordless via
@@ -74,21 +74,22 @@ If you don't have the ``ssh`` keys, use the steps below to generate them.
7474 * Please choose the HPC where you want to have passwordless access.
7575
7676 .. code-block :: bash
77-
77+
7878 ssh-copy-id < username> @< computer name or IP address>
7979
8080 * Test the connectivity of your passwordless ``ssh `` by running one of the commands below in the **Powershell ** prompt.
8181
8282 .. code-block :: bash
83-
83+
8484 ssh < username> @< computer name or IP address>
8585
8686 * After completing the above steps, run the below commands.
8787
8888 .. code-block :: bash
8989
90- cd simstack_linux
91- ./run_simstack.sh
90+ micromamba activate simstack
91+ # and run simstack:
92+ simstack
9293
9394
9495 Installation on Windows
@@ -118,7 +119,16 @@ If you don't have the ``ssh`` keys, use the steps below to generate them.
118119 type $env :USERPROFILE\. ssh\i d_rsa.pub | ssh < username> @< computer name or IP address> " cat >> .ssh/authorized_keys"
119120
120121
121- * After completing the above steps, double-click on ``run-simstack `` and be happy.
122+ * The installation and execution works similar to Linux above:
123+
124+ .. code-block :: bash
125+
126+ # Create a new environment for the simstack client:
127+ micromamba create --name=simstack -c https://repo.prefix.dev/simstack simstack -c conda-forge
128+ # Activate the environment
129+ micromamba activate simstack
130+ # and run simstack:
131+ simstack
122132
123133 **Testing the connectivity **
124134
0 commit comments