File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ extract_model
5
5
[ ![ License: MIT ] ( https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge )] ( https://opensource.org/licenses/MIT )
6
6
[ ![ Documentation Status] ( https://img.shields.io/readthedocs/extract_model/latest.svg?style=for-the-badge )] ( https://extract_model.readthedocs.io/en/latest/?badge=latest )
7
7
[ ![ Code Style Status] ( https://img.shields.io/github/workflow/status/axiom-data-science/extract_model/linting%20with%20pre-commit?label=Code%20Style&style=for-the-badge )] ( https://github.com/axiom-data-science/extract_model/actions )
8
+ [ ![ Conda Version] ( https://img.shields.io/conda/vn/conda-forge/extract_model.svg?style=for-the-badge )] ( https://anaconda.org/conda-forge/extract_model )
8
9
9
10
10
11
Facilitates read-in and extraction for ocean model output.
@@ -15,26 +16,33 @@ Facilitates read-in and extraction for ocean model output.
15
16
16
17
## Installation
17
18
19
+ ### From conda-forge
20
+
21
+ ```
22
+ conda install -c conda-forge extract_model
23
+ ```
24
+
25
+ ### With environment
26
+
18
27
Clone the repo:
19
28
``` bash
20
29
$ git clone https://github.com/axiom-data-science/extract_model.git
21
30
```
22
31
23
32
In the ` extract_model ` directory, install conda environment:
24
- * for Mac:
25
33
``` bash
26
- $ conda env create -f environment-mac.yml
27
- ```
28
- * for Linux:
29
- ``` bash
30
- $ conda env create -f environment-linux.yml
34
+ $ conda env create -f environment.yml
31
35
```
32
36
33
- For local package install, in the ` extract_model ` directory:
37
+ ### Local
38
+
39
+ For local package install, after cloning the repository, in the ` extract_model ` directory:
34
40
``` bash
35
41
$ pip install -e .
36
42
```
37
43
44
+ ### Development
45
+
38
46
To also develop this package, install additional packages with:
39
47
``` bash
40
48
$ conda install --file requirements-dev.txt
You can’t perform that action at this time.
0 commit comments