You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GPT-Brain/batch-programs/get-requirement.bat

16 lines
266 B
Batchfile

@echo off
cd..
echo Activating Virtural environment...
call .\venv\Scripts\activate
echo upgrading pip...
python -m pip install --upgrade pip
echo Installing pipreqs...
pip install pipreqs
echo Export to requirements.txt
pipreqs . --force --encoding utf-8
pause