linux (2.4.24), mysqldb 1.0, python 2.3.3, gcc 3.3. Just installed MySQLdb and when I do an import MySQLdb I get a core dump. Anyone else experienced this? Any ideas?
Thanks,
Ognen
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
linux (2.4.24), mysqldb 1.0, python 2.3.3, gcc 3.3. Just installed MySQLdb and when I do an import MySQLdb I get a core dump. Anyone else experienced this? Any ideas?
Thanks,
Ognen
You failed to mention what hardware platform you are using, and what version of MySQL.
Try this:
$ gdb python
> run
>>> import MySQLdb
[segfault]
> bt
The output of bt will say what went wrong.
Or if you actually have a core dump lying around:
$ gdb python core
> bt
Also try 1.1.1, since you have a modern Python version.