File size: 687 Bytes
93d7919 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | Installation
============
pgmpy requires Python >=3.8, <=3.11. pgmpy is hosted on both pypi and anaconda. For installation through pypi, use the command:
.. code-block:: bash
pip install pgmpy
For installation through anaconda, use the command:
.. code-block:: bash
conda install -c ankurankan pgmpy
For installing the latest `dev` branch from github, use the command:
.. code-block:: bash
pip install git+https://github.com/pgmpy/pgmpy.git@dev
Requirements
------------
If installing manually, the following non-optional dependencies needs to be installed:
* numpy
* scipy
* scikit-learn
* pandas
* pyparsing
* pytorch
* statsmodels
* tqdm
* joblib
|