to help others if they have this error too...
After asking a few guys in the message board, they led me to try testing python. Code: # python Python 2.4.4 (#26, Aug 23 2007, 16:19:02) Type "help", "copyright", "credits" or "license" for more information. >>> import zlib Module Not found Code: # python2.5 Python 2.5.1 (#26, Aug 23 2007, 16:19:02) Type "help", "copyright", "credits" or "license" for more information. >>> import zlib >>> As you can see it worked for Python2.5 but not 2.4. so I googled "python path" and found a Python Install Guide --> http://www.python.org/doc/2.4.1/inst/search-path.html I followed 4.1 Modifying Python's Search Path and found 2.5's search path is different than 2.4. I created a path.pth in the ...python2.4/site-packages/ dir and tried it again successfully. Install is now going strong. ------------------------ imfrompa -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=10138#10138 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
