mirror of
https://github.com/tiennm99/qr-code-attendance.git
synced 2026-06-05 18:11:58 +00:00
11 lines
231 B
Batchfile
11 lines
231 B
Batchfile
@echo off
|
|
echo Installing requirements...
|
|
pip install -r requirements.txt
|
|
if %errorlevel% neq 0 (
|
|
echo Error: Failed to install requirements.
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
echo Requirements installed successfully.
|
|
pause
|