MacPython
MacPython

Reputation: 18271

Django Python Delete Project App Library

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.

Upvotes: 0

Views: 1548

Answers (1)

gruszczy
gruszczy

Reputation: 42158

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.

Upvotes: 2

Related Questions