Skip to content

Commit

Permalink
doc: added info to install pytensor and pymc (#623)
Browse files Browse the repository at this point in the history
* doc: added info to install pytensor and pymc

* minor: fix typo

* fix: add a note about numpy version

---------

Co-authored-by: Carlos da Costa <[email protected]>
  • Loading branch information
mrava87 and cako authored Nov 21, 2024
1 parent d832ec6 commit 317a804
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,25 @@ You may need to set the environment variable ``NUMBA_NUM_THREADS`` define how ma
It can also be checked dynamically with ``numba.config.NUMBA_DEFAULT_NUM_THREADS``.


PyMC and PyTensor
-----------------
`PyTensor <https://pytensor.readthedocs.io/en/latest/>`_ is used to allow seamless integration between PyLops and
`PyMC <https://www.pymc.io/welcome.html>`_ operators.
Install both of them via ``conda`` with:

.. code-block:: bash
conda install -c conda-forge pytensor pymc
or via ``pip`` with

.. code-block:: bash
>> pip install pytensor pymc
.. note::
PyTensor does not support NumPy 2 yet, so make sure you use NumPy 1.x with PyTensor and PyMC.

PyWavelets
----------
`PyWavelets <https://pywavelets.readthedocs.io/en/latest/>`_ is used to implement the wavelet operators.
Expand Down

0 comments on commit 317a804

Please sign in to comment.