Skip to content

Commit ccd6f2d

Browse files
authored
Instr (#14)
* fixed order of conda channels * added an example of channel order
1 parent 575eb9b commit ccd6f2d

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

docs/02_installation.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@ Please add the channel conda-forge to your defaults:
3232

3333
$ conda config --add channels conda-forge
3434

35-
3635
The last channel added gets on top of the list. This gives the order:
36+
37+
```
38+
channels:
39+
- conda-forge
40+
- defaults
41+
```
42+
3743
First search in conda-forge.
3844

3945
You must install mss into a new environment to ensure the most recent
@@ -55,6 +61,7 @@ shall be updated, it is important to update all packages in this
5561
environment.
5662

5763
$ conda activate mssenv
64+
(mssenv) $ mamba update mss
5865
(mssenv) $ mamba update --all
5966

6067
## Usage
@@ -70,7 +77,7 @@ The configuration is described in the section
7077

7178
### mswms server
7279
To try out the setup you can use demo data. Read about a [server based installation](https://mss.readthedocs.io/en/stable/deployment.html).
73-
80+
7481
(mssenv) $ mswms_demodata --seed
7582
(mssenv) $ mswms
7683

@@ -81,7 +88,7 @@ The capabilities can be read on a [web browser](http://localhost:8081/?service=W
8188

8289
### mscolab server
8390
To tryout the setup you can use demo data. Read about a [server based installation](https://mss.readthedocs.io/en/stable/mscolab.html).
84-
91+
8592
(mssenv) $ mscolab db --init
8693
(mssenv) $ mscolab db --seed
8794
(mssenv) $ mscolab start

docs/develop/Setup-Instructions.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,16 @@ win-64
2828
Please add the channel conda-forge to your defaults:
2929

3030
$ conda config --add channels conda-forge
31-
$ conda config --add channels defaults
3231

3332
The last channel added gets on top of the list. This gives the order:
34-
First search in default packages then in conda-forge.
33+
34+
```
35+
channels:
36+
- conda-forge
37+
- defaults
38+
```
39+
40+
First search in conda-forge.
3541

3642
You must install mss into a new environment to ensure the most recent
3743
versions for dependencies (On the Anaconda Prompt on Windows, you have

0 commit comments

Comments
 (0)