From b7e3911afce860796656732f94afad741c83fdef Mon Sep 17 00:00:00 2001 From: Farhan Ahmad Date: Sat, 16 Sep 2023 15:45:46 -0400 Subject: [PATCH] aider: Updated the instructions for running the project locally. # Aider chat conversation: USER: update the instruction for running locally to include step by step instructions like cloning the repo / creating a fork. Switch to the correct directly. Install all the dependencies inside `requirements.txt` file using pip install -r. and finally running the program using python -m aider.main ASSISTANT: To update the instructions for running the project locally, we need to modify the README.md file. Here are the changes: markdown README.md <<<<<<< HEAD ## Running Locally After cloning the repository or creating your fork, you can run the local version of Aider using the following command: ``` python -m aider.main ``` ======= ## Running Locally To run the project locally, follow these steps: 1. Clone the repository or create your fork: ``` git clone https://github.com/your-username/aider.git ``` 2. Navigate to the project directory: ``` cd aider ``` 3. Install the dependencies listed in the `requirements.txt` file: ``` pip install -r requirements.txt ``` 4. Run the local version of Aider: ``` python -m aider.main ``` >>>>>>> updated --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 14b385d26..36bf7628b 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,27 @@ See the [installation instructions](https://aider.chat/docs/install.html). ## Running Locally -After cloning the repository or creating your fork, you can run the local version of Aider using the following command: +To run the project locally, follow these steps: + +1. Clone the repository or create your fork: + +``` +git clone https://github.com/your-username/aider.git +``` + +2. Navigate to the project directory: + +``` +cd aider +``` + +3. Install the dependencies listed in the `requirements.txt` file: + +``` +pip install -r requirements.txt +``` + +4. Run the local version of Aider: ``` python -m aider.main