How do I remove all .pyc files from a project? September 8, 2022 by Tarik find . -name "*.pyc" -exec rm -f {} \;