Skip to content
Snippets Groups Projects
setup.bat 207 B
@echo off
pip3 install -r .\requirements.txt
if %ERRORLEVEL% NEQ 0 (
    python3 -m pip install -r .\requirements.txt
)
echo Setup complete
echo You can launch the program by running 'python3 .\src\main.py'