Answers for "django cache clear command"

4

pip clear cache command

pip cache purge
Posted by: Guest on September-17-2021
0

django clear _pycache_ command

py -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
py -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
Posted by: Guest on April-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language