From 8d3438e971310246a00bd19f64be3cc5768ee752 Mon Sep 17 00:00:00 2001 From: Girish <79399756+Girish-Anadv-07@users.noreply.github.com> Date: Mon, 29 Jan 2024 02:03:57 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57e13b65..3d6bb60a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,13 @@ clingo installation **1. Install** ``clingo`` -To install ``clingo`` package with **conda install** run one of the following command +To install ``clingo`` package with **pip install** run the following command + +```bash + pip install clingo +``` + +To install ``clingo`` package with **conda install** run the following command ```bash conda install -c conda-forge clingo @@ -39,7 +45,7 @@ graph-tool installation ------------------------- **2. Install** ``graph-tool`` -To install ``graph-tool`` package with **conda install** run one of the following command +To install ``graph-tool`` package with **conda install** run the following command ```bash conda install -c conda-forge graph-tool From 19142540caaf17febd67a4aadd732b0e5e9cdcf6 Mon Sep 17 00:00:00 2001 From: Girish <79399756+Girish-Anadv-07@users.noreply.github.com> Date: Mon, 29 Jan 2024 02:07:42 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 3d6bb60a..173b25fc 100644 --- a/README.md +++ b/README.md @@ -17,33 +17,10 @@ Install the gunfolds package ``` Additionally, install these packages to use gunfolds - -clingo installation -------------------- - -**1. Install** ``clingo`` - -To install ``clingo`` package with **pip install** run the following command - -```bash - pip install clingo -``` - -To install ``clingo`` package with **conda install** run the following command - -```bash - conda install -c conda-forge clingo -``` - -To install ``clingo`` package with **brew install** run the following command - -```bash - brew install clingo -``` graph-tool installation ------------------------- -**2. Install** ``graph-tool`` +**1. Install** ``graph-tool`` To install ``graph-tool`` package with **conda install** run the following command @@ -59,7 +36,7 @@ To install ``graph-tool`` package with **brew install** run the following comman PyGObject installation ------------------------- -**3. Install** ``PyGObject`` +**2. Install** ``PyGObject`` **This is only required if you need to use** ``gtool`` **module of the** ``gunfolds`` **package** From 7505f89386b2f1e58a3965758e267ce32aa5d511 Mon Sep 17 00:00:00 2001 From: Girish <79399756+Girish-Anadv-07@users.noreply.github.com> Date: Mon, 29 Jan 2024 02:10:46 -0500 Subject: [PATCH 3/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2d08d0af..26890b98 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ install_requires = ['networkx', 'igraph', 'scipy', 'numpy', 'statsmodels', 'sympy', 'seaborn', 'pandas', - 'matplotlib', 'progressbar', 'ipdb', 'pydot'] + 'matplotlib', 'progressbar', 'ipdb', 'pydot', 'clingo'] tests_require = install_requires