Hi,
Can you delete python modules? I've installed one that I would like to remove, and can't seem to figure out how.
Thanks
Hi,
Can you delete python modules? I've installed one that I would like to remove, and can't seem to figure out how.
Thanks
This has already been asked here.
Go into the "site-packages" directory of your python install and remove the files manually.
To find where the module is, just do a:
$ python
>> import module
>> print module.__file__
'/some/directory'
or if it is a package:
>> import package
>> print package.__path__
and delete it.