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

Popular posts from this blog

firemonkey - How do I make a beep sound in Android using Delphi and the API? -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -