### Install Python dependencies for LinkedIn EasyApply Bot Source: https://github.com/nicolomantini/linkedin-easy-apply-bot/blob/master/README.md This command installs all necessary Python packages listed in `requirements.txt` using pip3. It's a crucial step for setting up the bot's environment. ```bash pip3 install -r requirements.txt ``` -------------------------------- ### Configure LinkedIn EasyApply Bot settings in config.yaml Source: https://github.com/nicolomantini/linkedin-easy-apply-bot/blob/master/README.md This YAML configuration file defines user credentials, job search criteria (positions, locations, salary, rate), and paths to upload documents (resume, cover letter, photo). It also allows specifying an output filename and a blacklist for companies. Users must save the file after editing and avoid committing it. ```yaml username: # Insert your username here password: # Insert your password here phone_number: #Insert your phone number positions: - # positions you want to search for - # Another position you want to search for - # A third position you want to search for locations: - # Location you want to search for - # A second location you want to search in salary: #yearly salary requirement rate: #hourly rate requirement uploads: Resume: # PATH TO Resume Cover Letter: # PATH TO cover letter Photo: # PATH TO photo # Note file_key:file_paths contained inside the uploads section should be written without a dash ('-') output_filename: - # PATH TO OUTPUT FILE (default output.csv) blacklist: - # Company names you want to ignore ``` -------------------------------- ### Execute LinkedIn EasyApply Bot Source: https://github.com/nicolomantini/linkedin-easy-apply-bot/blob/master/README.md This command runs the main Python script for the LinkedIn EasyApply Bot, initiating the automated job application process based on the settings defined in `config.yaml`. ```bash python3 easyapplybot.py ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.