Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs for conda installation #528

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ pip install "preliz[full,lab]"
```
pip install "preliz[full,notebook]"
```
PreliZ is also available through [conda-forge](https://anaconda.org/conda-forge/preliz).

```
conda install -c conda-forge preliz
```

### Development
The latest development version can be installed from the main branch using pip:
Expand Down
15 changes: 14 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ PreliZ is tested on Python 3.10+. And depends on ArviZ, matplotlib, NumPy, and S
Installation
============

For the latest release (base set of dependencies) you can do:
For the latest release, you can install PreliZ either using pip or conda-forge:

Using pip
---------

.. code-block:: bash

Expand All @@ -76,6 +79,16 @@ To make use of the interactive features, you can install the optional dependenci

pip install "preliz[full,notebook]"

Using conda-forge
-----------------

.. code-block:: bash

conda install -c conda-forge preliz

Development
===========

The latest development version can be installed from the main branch using pip:

.. code-block:: bash
Expand Down
Loading