Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 521 Bytes

File metadata and controls

12 lines (12 loc) · 521 Bytes

windows:

  1. fill in .env file with needed options (get examples from website)
  2. python -m venv venv
  3. .\venv\scripts\activate
  4. pip install -r .\requirements.txt
  5. python main.py

linux\mac os:

  1. fill in .env file with needed options (get examples from website)
  2. python3 -m venv venv
  3. source ./venv/bin/activate
  4. pip install -r ./requirements.txt
  5. python3 main.py