Op Thursday 31 January 2008 19:05:55 schreef Clemente Aguiar: > I have two versions of Python installed, ver 2.3.6 and 2.4.4. > > I also have dev-python/mysql-python version 1.2.2 installed. > > When I try "import _mysql" in version 2.4.4 it works, but in version > 2.3.6 it gives the following error: > > Python 2.3.6 (#1, Jan 30 2008, 14:30:02) > [GCC 4.1.2 (Gentoo 4.1.2)] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > > >>> import _mysql > > Traceback (most recent call last): > File "", line 1, in ? > ImportError: No module named _mysql > Why are you useing "_mysql", why not use "mysql"? > > Can anybody help with my problem? > > Note: the reason I am trying to use mysql with an older version of > Python its because it is the version that Zope-2.8.91 is configured to > use, so I am stuck. > > Clemente