python setup.py uninstall -
i have installed python package python setup.py install
.
how uninstall it?
you need remove files manually, , undo other stuff installation did manually.
if don't know list of files, can reinstall --record
option, , take @ list produces.
to record list of installed files, can use:
python setup.py install --record files.txt
once want uninstall can use xargs removal:
cat files.txt | xargs rm -rf
Comments
Post a Comment