playitslowly icon indicating copy to clipboard operation
playitslowly copied to clipboard

How do I uninstall this?

Open gitouttaherenow opened this issue 3 years ago • 1 comments

I installed this on Ubuntu using the install.sh script. How would I go about removing this software and related content? apt remove doesn't seem to help or list the package.

gitouttaherenow avatar Jan 11 '22 10:01 gitouttaherenow

See https://stackoverflow.com/questions/1550226/python-setup-py-uninstall

In short the following should work:

python setup.py install --record files.txt
xargs rm -rf < files.txt

Probably worth double checking that you do indeed want everything in files.txt gone.

jwagner avatar Jan 11 '22 18:01 jwagner