Skip to content

Commit

Permalink
Corrected instructions on conda packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Dec 12, 2024
1 parent 5180fd6 commit fee1fa5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ For conda users, you can install the package from the conda-forge channel:

.. code-block:: console
conda install -c conda-forge blosc2
conda install -c conda-forge python-blosc2
Documentation
=============
Expand Down
14 changes: 10 additions & 4 deletions doc/getting_started/installation.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
Installation
============
You can install Python-Blosc2 wheels via PyPI using Pip or clone the GitHub repository.
You can install Python-Blosc2 wheels via PyPI using Pip, Conda or clone the GitHub repository.

Pip
+++

.. code-block::
python -m pip install blosc2
python -m pip install blosc2 --upgrade
Conda
+++++

.. code-block::
conda install -c conda-forge python-blosc2
Source code
+++++++++++
Expand All @@ -17,7 +23,7 @@ Source code
git clone https://github.com/Blosc/python-blosc2/
cd python-blosc2
pip install -e .[test]
pip install .[test] # install with test dependencies
That's all. You can proceed with testing section now.

Expand All @@ -29,7 +35,7 @@ running the tests:

.. code-block:: console
python -m pytest (add -v for verbose mode)
python -m pytest # add -v for verbose mode
Benchmarking
------------
Expand Down

0 comments on commit fee1fa5

Please sign in to comment.