Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

added bat files for easy launch #16

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python -m venv venv
call venv\Scripts\activate.bat
python -m pip install --upgrade pip
pip install -U setuptools
pip install -r requirements.txt
5 changes: 5 additions & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off

call venv\Scripts\activate.bat
python run.py
pause