Files
Web-NibblePoker/scripts/python-setup.cmd
Herwin c8bf68fa2d Moved build scripts into "scripts/", Updated readme
Update .gitignore, compile-clean.cmd, and 38 more files...
2024-04-18 18:00:28 +02:00

23 lines
280 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:python
echo.
echo Setting up Python...
echo --------------------
:python-install
echo Installing packages...
pushd %CD%
call pip install -r requirements.txt
popd
:python-end
:end