I just downloaded greenplum for os x. When I try to start the db, I get this error -- which I take to mean that it is missing gppylib.
/usr/local/greenplum$ bin/gpstart
Traceback (most recent call last):
File "bin/gpstart", line 9, in <module>
from gppylib.mainUtils import *
ImportError: No module named gppylib.mainUtils
Here is the line from the file that is causing the error:
from gppylib.mainUtils import *
I try pip install gppylib
and pip install gppylib.mainUtils
but neither can find the package. I can't find the package on google.
Am I correctly understanding that python is looking for a package called gppylib? If so, where can I find it?
I was able to reproduce the error, it seems the path isn't set to include
/usr/local/greenplum-db-4.2.2.4/lib/python/gppylib/mainUtils.py
, which is where the package is in my installation. When I didexport PYTHONPATH=/usr/local/greenplum-db-4.2.2.4/lib/python/
I got another error message:I suspect this is because the pygresql is compiled for a 32 bit architecture, whereas I'm using x86_64 (unrelated to your issue of not finding the gppylib in the first place):
Note also that the readme says: