mirror of
https://github.com/sean1832/GPT-Brain
synced 2024-11-15 06:12:57 +00:00
16 lines
266 B
Batchfile
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 |