zpzc-2023/README.md

548 B

Getting started

  1. Install Python.
  2. Create virtual environment: python3 -m venv .venv.
  3. To activate the virtual environment, enter: source .venv/bin/activate.
  4. Install a list of requirements specified in requirements.txt: python -m pip install -r requirements.txt.
  5. Create a .env file cp .env.example .env and provide values of envirnoment variables.
  6. Run the script: python main.py.

When you're finished with your virtual environment, enter the following command to deactivate it: deactivate.