playitslowly
playitslowly copied to clipboard
How do I uninstall this?
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.
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.