Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 361 Bytes

File metadata and controls

18 lines (14 loc) · 361 Bytes

Tips and Useful Commands

Clearing all the pycaches folders

Using Bash:

find . -type d -name "__pycache__" -exec rm -r {} +

Using PowerShell:

Get-ChildItem -Recurse -Directory -Filter __pycache__ | Remove-Item -Recurse -Force

Using Command Prompt:

for /d /r . %d in (__pycache__) do @if exist "%d" rd /s /q "%d"