Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
MrShadowDev authored Oct 16, 2024
1 parent 3192894 commit 29112a0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@echo off
echo Installing required Python packages...

python --version >nul 2>&1
if %errorlevel% neq 0 (
echo Python is not installed. Please install Python first.
exit /b
)

pip install os re json asyncio aiohttp tkinter requests >nul 2>&1

if %errorlevel% neq 0 (
echo Failed to install the required Python packages. Ensure pip is working correctly.
exit /b
)

echo Running the Python script...
python main.py

pause

0 comments on commit 29112a0

Please sign in to comment.