I have got an install/first start-problem with MySQL-python-0.9.0 and mySQL 3.23.40 under Linux 2.2.19:
After i start then python interpreter and try to execute the command: import _mysql i get an error message Import Error: shared object not open. The connection via mysql-client on that system works fine. Is the shared library not installes correctly? Any suggestions?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-11-12
Helped myself out:
the shared libraries of mysql have not been on the libsearchpath. Added '/usr/local/lib/mysql' to $LD_LIBRARY_PATH works fine (on SuSE)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have got an install/first start-problem with MySQL-python-0.9.0 and mySQL 3.23.40 under Linux 2.2.19:
After i start then python interpreter and try to execute the command: import _mysql i get an error message Import Error: shared object not open. The connection via mysql-client on that system works fine. Is the shared library not installes correctly? Any suggestions?
Helped myself out:
the shared libraries of mysql have not been on the libsearchpath. Added '/usr/local/lib/mysql' to $LD_LIBRARY_PATH works fine (on SuSE)