Skip to content

Commit e81fded

Browse files
authored
Merge pull request #14 from tneumann2021/open_source_fixes
Open source fixes
2 parents 6857fc9 + 8e14aea commit e81fded

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

docs/installation/index.rst

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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\id_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

docs/installation/server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ After installing, make sure you have the **micromamba** command available in you
2222
.. code-block:: bash
2323
2424
# Create a new environment for simstack client:
25-
micromamba create --name=simstack_server_v6 simstackserver -c https://mamba.nanomatch-distribution.de/mamba-repo -c conda-forge
25+
micromamba create --name=simstack_server_v6 simstackserver -c https://repo.prefix.dev/simstack simstackserver -c conda-forge
2626
# Activate the environment to see if it exists
2727
micromamba activate simstack_server_v6
2828

0 commit comments

Comments
 (0)