If I want to delete a Django App or Project.
Is there a way to cleanly delete it?
Or a library in Python? How can I delete and re install libraries.
So I am SURE that nothing is left of that library.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to delete some python library go to /site-packages or /dist-packages, find this module(single file) or package(directory) or egg file (look at the extension) and delete this.
If you want to delete an app and you have it inside your project, simply delete app directory, remove it from settings and remove all references to objects from this app.