Added conda install info to the README

This commit is contained in:
Amit Sharma 2020-05-20 09:18:16 +05:30 коммит произвёл GitHub
Родитель b9931f1adf
Коммит 652bf97846
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 26 добавлений и 14 удалений

Просмотреть файл

@ -65,9 +65,34 @@ for causal inference, it is hard to compare their assumptions and robustness of
Installation
-------------
DoWhy support Python 3.5+. To install, you can use pip or conda.
**Latest Release**
Install the latest `release <https://pypi.org/project/dowhy/>`_ using pip.
.. code:: shell
pip install dowhy
Install the latest `release <https://anaconda.org/conda-forge/dowhy>`_ using conda.
.. code:: shell
conda install -c conda-forge dowhy
**Development Version**
If you prefer the latest dev version, clone this repository and run the following command from the top-most folder of
the repository.
.. code:: shell
pip install -e .
**Requirements**
DoWhy support Python 3+. It requires the following packages:
DoWhy requires the following packages:
* numpy
* scipy
@ -77,19 +102,6 @@ DoWhy support Python 3+. It requires the following packages:
* matplotlib (for general plotting)
* sympy (for rendering symbolic expressions)
Install the latest release using pip.
.. code:: shell
pip install dowhy
If you prefer the latest dev version, clone this repository and run the following command from the top-most folder of
the repository.
.. code:: shell
pip install -e .
If you face any problems, try installing dependencies manually.
.. code:: shell