python setup.py uninstall?
1 Expert Answer
Grace C. answered 10/18/19
Software Engineer (20 Years of Experience) w. PhD in Mathematics
Option 1:
It's sometimes tricky to find all the variation of packages installed. To find them, do
>> pip freeze | grep <main_part_of_your_package_name>
Once you found them, for each of those, do
>> pip uninstall <package_name_variation>
Option 2:
Save the names of files installed:
>> python setup.py install --record installed_files.txt
To uninstall, delete all recorded files:
>> xargs rm -rf < installed_files.txt
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Mohamad E.
as u Uninstall any app on you Pc - from Programmanager07/27/19