When installing external modules using setup.py
python setup.py install
Because I installed it like this
python setup.py uninstall
I thought I could uninstall it like this, but it didn't work.
First, write out the list of files created during installation
python setup.py install --record files.txt
Then delete the files on the list
cat files.txt | xargs rm -rf
This completes the uninstallation
http://stackoverflow.com/questions/1550226/python-setup-py-uninstall
Recommended Posts