Skip to content

Commit f567ea0

Browse files
committed
Updated documentation to reflect ability to install through conda-forge.
1 parent 0d95cd5 commit f567ea0

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ After that, include the following line in your Python script, and you should be
1818

1919
`from ecape_parcel.calc import calc_ecape_parcel, density_temperature`
2020

21+
The package can also be installed through Anaconda with these commands.
22+
23+
`conda config --add channels conda-forge` <br>
24+
`conda config --set channel_priority strict` <br>
25+
`conda install ecape-parcel`
26+
27+
or
28+
29+
`mamba install ecape-parcel`
30+
2131
# How To Use
2232
This package has been written with the intention of using the same input data format as MetPy. This example script was used as a test during development, utilizing <a href="https://github.com/kylejgillett/sounderpy">Kyle Gillett's SounderPy</a> to get test data.
2333

src/ecape_parcel/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2023-present Amelia Urquhart <amelia.r.urquhart@gmail.com>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = '1.2.0.1'
4+
__version__ = '1.2.0.2'

0 commit comments

Comments
 (0)