How to remove __pycache__ folders and .pyc files
These 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...
Feb 20, 20181 min read268


