docs: update README.md

This commit is contained in:
Joseph Adediji 2024-08-28 00:59:57 +01:00
parent 327d570333
commit 3503593411

View File

@ -89,7 +89,16 @@ LinkedIn_AIHawk steps in as a game-changing solution to these challenges. It's n
cd LinkedIn_AIHawk_automatic_job_application cd LinkedIn_AIHawk_automatic_job_application
``` ```
4. **Install the required packages:** 4. **Activate virtual environment:**
```bash
python3 -m venv virtual
```
```bash
source virtual/bin/activate
```
5. **Install the required packages:**
```bash ```bash
pip install -r requirements.txt pip install -r requirements.txt
``` ```
@ -452,7 +461,7 @@ Using this folder as a guide can be particularly helpful for:
python main.py python main.py
``` ```
- **Using a Specific Resume:** - **Using a Specific Resume:**
If you want to use a specific PDF resume for all applications, run the bot with the `--resume` option: If you want to use a specific PDF resume for all applications, place your resume PDF in the `data_folder` directory and run the bot with the `--resume` option:
```bash ```bash
python main.py --resume /path/to/your/resume.pdf python main.py --resume /path/to/your/resume.pdf
``` ```