picgen / fix.bat
devindevine's picture
Upload 23 files
f02dec0 verified
raw
history blame contribute delete
309 Bytes
@echo off
echo === Fixing Picgen Installation ===
echo Clearing Python cache...
for /d /r . %%d in (__pycache__) do @if exist "%%d" rd /s /q "%%d"
del /s /q *.pyc 2>nul
echo Reinstalling dependencies...
pip3 install -r requirements.txt --force-reinstall
echo === Fix Complete ===
echo Run: start.bat
pause