python setup.py uninstall

I have installed a python package with python setup.py install

How do I uninstall it?

=================================================================

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.

To record list of installed files, you can use:

python setup.py install --record files.txt

Once you want to uninstall you can use xargs to do the removal:

cat files.txt | xargs rm -rf




from: http://stackoverflow.com/questions/1550226/python-setup-py-uninstall
原文地址:https://www.cnblogs.com/pinganzi/p/5670654.html