From the shell
ls site-packages
If that's not helpful, you can do this.
import sysimport osfor p in sys.path: print os.listdir( p )
And see what that produces.
From the shell
ls site-packages
If that's not helpful, you can do this.
import sysimport osfor p in sys.path: print os.listdir( p )
And see what that produces.