### Project Setup and Installation Source: https://github.com/cezar-r/wordle_bot/blob/main/README.md Instructions for cloning the repository, navigating to the source directory, and installing necessary Python dependencies using pip. ```bash git clone https://github.com/cezar-r/wordle_bot cd wordle_bot/src pip install -r requirements.txt ``` -------------------------------- ### Running Wordle Simulations Source: https://github.com/cezar-r/wordle_bot/blob/main/README.md Command to run simulations of the Wordle bot. It takes the number of simulations and a list of initial guess words as arguments. ```python python simulate.py ... # Ex: python simulate.py 100 slate crate crane ``` -------------------------------- ### Running the Wordle Bot Source: https://github.com/cezar-r/wordle_bot/blob/main/README.md Command to execute the main Python script for running the Wordle bot to solve the daily puzzle. ```python python main.py ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.