# PowerShell script to clear Python cache Write-Host "Clearing Python cache..." -ForegroundColor Yellow # Clear __pycache__ directories Get-ChildItem -Path . -Recurse -Directory -Filter "__pycache__" | Remove-Item -Recurse -Force Write-Host "āœ… Cleared __pycache__ directories" -ForegroundColor Green # Clear .pyc files Get-ChildItem -Path . -Recurse -File -Filter "*.pyc" | Remove-Item -Force Write-Host "āœ… Cleared .pyc files" -ForegroundColor Green Write-Host "`nšŸŽ‰ Cache cleared successfully!" -ForegroundColor Green Write-Host "Now run: python main.py --mode all" -ForegroundColor Cyan