[Django]-How to uninstall pip packages which are installed from a *.txt file?

3👍

There are some good suggestions in this related thread: python setup.py uninstall

EDIT: Maybe you need to remove all files manually, and also undo any other stuff that installation did manually.

If you don’t know the list of all files, you can reinstall it with the –record option, and take a look at the list this produces.

👤dnlcrl

Leave a comment