diff --git a/README.rst b/README.rst index 1c742cd6..de514daf 100644 --- a/README.rst +++ b/README.rst @@ -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 ============= diff --git a/doc/getting_started/installation.rst b/doc/getting_started/installation.rst index 1370e2e6..3d950fac 100644 --- a/doc/getting_started/installation.rst +++ b/doc/getting_started/installation.rst @@ -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 +++++++++++ @@ -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. @@ -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 ------------