setup.py
file, and you are trying to figure out an easy way to uninstall it without having to remove all the files manually? If that is your case then read on.--record
option like so:python setup.py install --record InstalledFilesList.txt
This command performs two actions:
- It installs the application
- It creates a file
InstalledFilesList.txt
that contains a list of installed files.
cat InstalledFilesList.txt | xargs rm -rf
Comments