Skip to content

Commit

Permalink
Merge pull request #738 from cjbbb/release/v11.15
Browse files Browse the repository at this point in the history
Add Conda description #737
  • Loading branch information
surapuramakhil authored Nov 4, 2024
2 parents ec5e82d + 638fa9c commit 1096437
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ Auto_Jobs_Applier_AIHawk steps in as a game-changing solution to these challenge
- 3.11.9(64b)
- 3.12.5(64b)

### Option 1: Using Python Virtual Environment

1. **Download and Install Python:**

Ensure you have the last Python version installed. If not, download and install it from Python's official website. For detailed instructions, refer to the tutorials:
Expand Down Expand Up @@ -160,6 +162,34 @@ Auto_Jobs_Applier_AIHawk steps in as a game-changing solution to these challenge
pip install -r requirements.txt
```

### Option 2: Using Conda

1. **Install Conda:**
- Download and install Miniconda from the [official website](https://docs.conda.io/en/latest/miniconda.html)
- Or install Anaconda from the [Anaconda website](https://www.anaconda.com/download)

2. **Create and activate conda environment:**
```bash
# Create new environment
conda create -n aihawk python=3.11
# Activate environment
conda activate aihawk
```

3. **Clone the repository:**
```bash
git clone https://github.com/feder-cr/Auto_Jobs_Applier_AIHawk.git
cd Auto_Jobs_Applier_AIHawk
```

4. **Install dependencies:**
```bash
# Install from requirements.txt
pip install -r requirements.txt
```


## Configuration

### 1. secrets.yaml
Expand Down

0 comments on commit 1096437

Please sign in to comment.