Answers for "how to remove py cache from windows"

4

remove all pycache files

find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
Posted by: Guest on June-04-2020

Code answers related to "how to remove py cache from windows"

Python Answers by Framework

Browse Popular Code Answers by Language