Set up the Python environment

Prev Next

Follow these steps to set up the python environment and run the scripts:

  1. Navigate to the project root directory.

  2. Activate the Python virtual environment for your operating system:

    • For Windows:

      python -m venv hs_venv
      hs_venv\Scripts\activate.bat
    • For macOS and Linux:

      python -m venv hs_venv
      source hs_venv/bin/activate
  3. Install required packages:

    pip install -r requirements.txt