Setup environment

  1. Install Python 3.11 or higher.
  2. Ensure that all files listed in the prerequisites are placed in the same directory as your main Python script.
  3. Create a virtual environment by running: For MacOS/ Linux, run:
    python3.11 -m venv venv 
     source venv/bin/activate   # macOS/Linux
    
    For Window:
    python3.11 -m venv venv 
     .\venv\Scripts\activate  # Windows
    
    If “A new release of pip is available” message pops up, upgrade pip by running:
    pip install --upgrade pip
    
  4. Install dependencies inside your virtual environment by running:
    pip install -r requirements.txt
    

You are provided with “requirements.txt” file along with the documentation.