Answers for "remove __pycache__ from project"

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 "remove __pycache__ from project"

Python Answers by Framework

Browse Popular Code Answers by Language