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/update_lib.bat

13 lines
272 B
Batchfile

@echo off
cd..
echo Activating Virtual environment...
call .\venv\Scripts\activate
echo updating pip...
python -m pip install --upgrade pip
echo updating requirements...
pip3 install -r requirements.txt
ping 127.0.0.1 -n 2 > NUL
echo requirements updated complete!
pause