Erdal TAŞKESENwww.erdaltaskesen.com·Feb 20, 2018How to remove __pycache__ folders and .pyc filesThese folders and files are generated by python. You should add these to your VCS’s ignore file. But if you need to clean these manually, you can do with the command below: find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf This command wi...1 like·195 readsPython