forked from arviz-devs/arviz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Add ArviZ installation guide [docs] (arviz-devs#1551)
* ArviZ installation page for review * Updated Installation.rst and index.md file in Getting Started documentation page * Deleted the previous installation.rst file in the source folder * Add link to Installation guide from home page. Update to Installation guide. * update changelog Co-authored-by: Oriol (ZBook) <[email protected]>
- Loading branch information
1 parent
dc4a6f1
commit e9913ef
Showing
4 changed files
with
95 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
################## | ||
Installation guide | ||
################## | ||
|
||
This section provides detailed information about installing ArviZ. Most ArviZ | ||
functionality is available with the basic requirements, but ArviZ also has optional | ||
dependencies to further enhance the library. This guide will cover both basic and fully-fledged ArviZ installs and several installation methods. | ||
|
||
|
||
****** | ||
Stable | ||
****** | ||
|
||
ArviZ can be installed either using pip or conda-forge. | ||
|
||
Using pip | ||
========= | ||
|
||
.. code:: bash | ||
pip install arviz | ||
Use the below pip command to install ArviZ with all of it's :ref:`Optional-dependencies`. | ||
|
||
.. code:: bash | ||
pip install arviz[all] | ||
Using conda-forge | ||
================= | ||
|
||
.. code:: bash | ||
conda install -c conda-forge arviz | ||
.. _dev-version: | ||
|
||
*********** | ||
Development | ||
*********** | ||
|
||
If you want to install the latest development version of ArviZ, then you | ||
may use | ||
|
||
.. code:: bash | ||
pip install git+https://github.com/arviz-devs/arviz | ||
************ | ||
Dependencies | ||
************ | ||
|
||
Required dependencies | ||
===================== | ||
|
||
The required dependencies for installing ArviZ are: | ||
|
||
.. literalinclude:: ../../../requirements.txt | ||
|
||
.. _Optional-dependencies: | ||
|
||
Optional dependencies | ||
===================== | ||
|
||
The list of optional dependencies to further enhance ArviZ are. | ||
|
||
.. literalinclude:: ../../../requirements-optional.txt | ||
|
||
|
||
- Numba | ||
|
||
Necessary to speed up the code computation. The installation details can be found | ||
`here <https://numba.pydata.org/numba-doc/latest/user/installing.html>`_. Further details on enhanced functionality provided in ArviZ by Numba can be | ||
`found here <https://arviz-devs.github.io/arviz/user_guide/Numba.html>`_. | ||
|
||
- Bokeh | ||
|
||
Necessary for creating advanced interactive visualisations. The Bokeh installation guide can be found `over here <http://docs.bokeh.org/en/dev/docs/first_steps/installation.html>`_. | ||
|
||
- UltraJSON | ||
|
||
If available, ArviZ makes use of faster ujson when :func:`arviz.from_json` is | ||
invoked. UltraJSON can be either installed via `pip <https://pypi.org/project/ujson/>`_ or `conda <https://anaconda.org/anaconda/ujson>`_. | ||
|
||
- Dask | ||
|
||
Necessary to scale the packages and the surrounding ecosystem. The installation details can be found `at this link <https://docs.dask.org/en/latest/install.html>`_. | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
# Getting Started | ||
|
||
```{toctree} | ||
Installation | ||
Introduction | ||
XarrayforArviZ | ||
CreatingInferenceData | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters