diff --git a/README.md b/README.md index d44d081b..36c5afdb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ We are building a python library of procedural dataset generators and algorithmi The goal is to generate virtually infinite data with adjustable complexity. -### Set up +### Set up for development 1. Clone the project ``` git clone https://github.com/open-thought/reasoning-gym.git @@ -14,14 +14,18 @@ git clone https://github.com/open-thought/reasoning-gym.git conda create --name reasoning_gym python=3.12 -y conda activate reasoning_gym ``` -3. Run the `requirements-dev.txt` file +3. Link project and install dependencies ``` -pip install -r requirements.txt +pip install -e . ``` -4. Install and run poetry to bring in other dependencies(`sympy` etc.) +4. Install development dependencies ``` -conda install -c conda-forge poetry -poetry install +pip install -r requirements-dev.txt +``` + +>NOTE: To consume the APIs in reasoning_gym, just install from pip using the following +``` +pip install reasoning-gym ``` ### How to instantiate a task dataset?