- Django 2 Web Development Cookbook
- Jake Kronika Aidas Bendoraitis
- 44字
- 2021-06-10 19:31:28
How to do it...
- Add this alias at the end of .bash_profile, as follows:
# ~/.bash_profile
alias delpyc='find . -name "*.pyc" -delete'
- Now, to clean the Python-compiled files, go to your project directory and type the following command on the command line:
$ delpyc