AIBrowser / cleanup
dhanu1401's picture
Create cleanup
c281de5 verified
raw
history blame contribute delete
227 Bytes
import shutil, os
paths = [
"/home/user/.cache",
"/tmp",
"/home/user/.local/share/huggingface"
]
for p in paths:
if os.path.exists(p):
shutil.rmtree(p, ignore_errors=True)
print("Deleted:", p)