aboutsummaryrefslogtreecommitdiff
path: root/run.bat
diff options
context:
space:
mode:
Diffstat (limited to 'run.bat')
-rw-r--r--run.bat24
1 files changed, 0 insertions, 24 deletions
diff --git a/run.bat b/run.bat
deleted file mode 100644
index be748c005..000000000
--- a/run.bat
+++ /dev/null
@@ -1,24 +0,0 @@
-@echo off
-setlocal enabledelayedexpansion
-
-:FindPythonCommand
-for %%A in (python python3) do (
- where /Q %%A
- if !errorlevel! EQU 0 (
- set "PYTHON_CMD=%%A"
- goto :Found
- )
-)
-
-echo Python not found. Please install Python.
-pause
-exit /B 1
-
-:Found
-%PYTHON_CMD% scripts/check_requirements.py requirements.txt
-if errorlevel 1 (
- echo Installing missing packages...
- %PYTHON_CMD% -m pip install -r requirements.txt
-)
-%PYTHON_CMD% -m autogpt %*
-pause \ No newline at end of file