I manually removed /Library/Python/2.7/site-packages/google
through terminal (rm), however it still seems I can import the package in python 2.7.
I am able to run import google
but when I print google.__path__
it displays ['/Library/Python/2.7/site-packages/google']
even though that directory no longer exists because I deleted it.
I initially deleted this package because it was giving me import errors when trying to run google's app engine api, so I need to have import google
be unlinked to this directory.
Any help would be greatly appreciated!