Skip to content

Commit 23cc76d

Browse files
authored
include instructions for conda/mamba (#152)
1 parent eb19378 commit 23cc76d

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ This module follows the SigMF specification [html](https://sigmf.org/)/[pdf](htt
1616

1717
```bash
1818
pip install sigmf
19+
# or
20+
conda install sigmf
21+
# or
22+
mamba install sigmf
1923
```
2024

2125
### Read SigMF

docs/source/developers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This page is for developers of the ``sigmf-python`` module.
88
Install
99
-------
1010

11-
To install the latest git release, build from source:
11+
To install from source:
1212

1313
.. code-block:: console
1414
1515
$ git clone https://github.com/sigmf/sigmf-python.git
1616
$ cd sigmf-python
17-
$ pip install .
17+
$ pip install .[test]
1818
1919
-------
2020
Testing

docs/source/quickstart.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ Here we discuss how to do all basic operations with SigMF.
1010
Install
1111
-------
1212

13-
To install the latest PyPi release, install from pip:
13+
To install from PyPI using pip:
1414

1515
.. code-block:: console
1616
1717
$ pip install sigmf
1818
19+
To install using conda or mamba (available via `Miniforge <https://conda-forge.org/download/>`_):
20+
21+
.. code-block:: console
22+
23+
$ conda install sigmf # or
24+
$ mamba install sigmf
25+
1926
----------------------
2027
Read a SigMF Recording
2128
----------------------

0 commit comments

Comments
 (0)