Skip to content

Commit fee1fa5

Browse files
committed
Corrected instructions on conda packaging
1 parent 5180fd6 commit fee1fa5

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ For conda users, you can install the package from the conda-forge channel:
188188

189189
.. code-block:: console
190190
191-
conda install -c conda-forge blosc2
191+
conda install -c conda-forge python-blosc2
192192
193193
Documentation
194194
=============

doc/getting_started/installation.rst

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
Installation
22
============
3-
You can install Python-Blosc2 wheels via PyPI using Pip or clone the GitHub repository.
3+
You can install Python-Blosc2 wheels via PyPI using Pip, Conda or clone the GitHub repository.
44

55
Pip
66
+++
77

88
.. code-block::
99
10-
python -m pip install blosc2
10+
python -m pip install blosc2 --upgrade
1111
12+
Conda
13+
+++++
14+
15+
.. code-block::
16+
17+
conda install -c conda-forge python-blosc2
1218
1319
Source code
1420
+++++++++++
@@ -17,7 +23,7 @@ Source code
1723
1824
git clone https://github.com/Blosc/python-blosc2/
1925
cd python-blosc2
20-
pip install -e .[test]
26+
pip install .[test] # install with test dependencies
2127
2228
That's all. You can proceed with testing section now.
2329

@@ -29,7 +35,7 @@ running the tests:
2935

3036
.. code-block:: console
3137
32-
python -m pytest (add -v for verbose mode)
38+
python -m pytest # add -v for verbose mode
3339
3440
Benchmarking
3541
------------

0 commit comments

Comments
 (0)