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.
Thanks a lot
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.
Thanks a lot
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.