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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -