File tree 5 files changed +243
-169
lines changed
docs/3_step2_installation
5 files changed +243
-169
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ jobs:
18
18
- uses : conda-incubator/setup-miniconda@v2
19
19
with :
20
20
auto-update-conda : true
21
- python-version : 3.7
21
+ python-version : 3.8
22
22
- name : Conda info
23
23
shell : bash -el {0}
24
24
run : conda info
25
25
- name : Install python and gcc
26
26
shell : bash -el {0}
27
27
run : |
28
- conda install -c conda-forge python=3.7
28
+ conda install -c conda-forge python=3.8
29
29
conda install -c conda-forge gcc=12.1.0
30
30
- name : Install gdal and pcraster
31
31
shell : bash -el {0}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ You can use conda environment to easily install dependencies.
24
24
* Create a conda env named "lisflood" and install dependencies:
25
25
26
26
``` bash
27
- conda create --name lisflood python=3.7 -c conda-forge
27
+ conda create --name lisflood python=3.8 -c conda-forge
28
28
conda activate lisflood
29
29
conda install -c conda-forge pcraster gdal
30
30
```
@@ -51,7 +51,7 @@ git clone --single-branch --branch master https://github.com/ec-jrc/lisflood-cod
51
51
* ** Install requirements into a python 3 conda env**
52
52
53
53
``` bash
54
- conda create --name lisflood python=3.7 -c conda-forge
54
+ conda create --name lisflood python=3.8 -c conda-forge
55
55
conda activate lisflood
56
56
conda install -c conda-forge pcraster gdal
57
57
cd lisflood-code
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Using conda environment is very handy since installing latest PCRaster and its d
56
56
1 . Install [ miniconda] ( https://docs.conda.io/en/latest/miniconda.html )
57
57
2 . Create a conda env named "lisflood" and install dependencies:
58
58
```
59
- conda create --name lisflood python=3.7 -c conda-forge
59
+ conda create --name lisflood python=3.8 -c conda-forge
60
60
conda activate lisflood
61
61
conda install -c conda-forge pcraster
62
62
pip install lisflood-model
@@ -84,7 +84,7 @@ Follow this instruction for a basic test (some sample catchments are included in
84
84
2. ** Install requirements into a python 3 conda env**
85
85
86
86
` ` ` bash
87
- conda create --name lisflood python=3.7 -c conda-forge
87
+ conda create --name lisflood python=3.8 -c conda-forge
88
88
conda activate lisflood
89
89
conda install -c conda-forge pcraster
90
90
cd lisflood-code
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: lisflood
2
2
channels :
3
3
- conda-forge
4
4
dependencies :
5
- - python=3.7
5
+ - python=3.8
6
6
- pcraster
7
7
- gdal
8
8
- pip
You can’t perform that action at this time.
0 commit comments