Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms committed Jan 23, 2024
1 parent 067fecc commit b0b0615
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

:: This is a setup script for the Python project

echo Setting up the Python environment...

:: Install dependencies
if exist %SystemRoot%\System32\pip.exe (
echo Installing Python dependencies...
pip install -r requirements.txt
) else (
echo Error: pip not found. Please install Python and pip first.
exit /b 1
)

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

echo Setup complete! You're ready to start working on your Python project.

0 comments on commit b0b0615

Please sign in to comment.