mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
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: <source>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 </source>
This commit is contained in:
parent
53c467ae88
commit
b7e3911afc
1 changed files with 21 additions and 1 deletions
22
README.md
22
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue