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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -