Uninstall Django on Mac OS X

10,883

If you installed Django using setup.py install, uninstalling is as simple as deleting the django directory from your Python site-packages. That is the best and only way to do it.

Reference Docs: https://docs.djangoproject.com/en/dev/topics/install/?from=olddocs

Share:
10,883
Kit
Author by

Kit

Updated on June 04, 2022

Comments

  • Kit
    Kit almost 2 years

    I installed Django by downloading the tarball, then

    $ tar xzvf Django-1.3.1.tar.gz
    $ cd Django-1.3.1
    $ sudo python setup.py install
    

    How do I uninstall Django? I can start by deleting the folder

    /Library/Frameworks/Python.frameworks/Versions/Current/lib/python2.7/site-packages/django
    

    Which other files, folders, and symlinks should I delete?