From 4ad77f450c287d7d5c3d3d2b3a80a66b41934100 Mon Sep 17 00:00:00 2001 From: kbenestad Date: Sat, 30 May 2026 20:30:03 +0700 Subject: [PATCH] WINDOWS ONLY Add batch script to set up virtual environment Delete if not using Windows. --- run.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 run.bat diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..67e1ed9 --- /dev/null +++ b/run.bat @@ -0,0 +1,3 @@ +python -m venv .venv +.venv\Scripts\pip install -r requirements.txt +.venv\Scripts\python main.py