安装python-MySQLdb似乎没报错。但是在python中加载是报下面的错。高手帮忙谢啦~
Traceback(mostrecentcalllast):File"<stdin>",line1,in<module>File"MySQLdb/__init__.py"...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "MySQLdb/__init__.py", line 19, in <module>
import _mysql
ImportError: dlopen(/Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so, 2): Library not loaded: libmysqlclient.18.dylib
Referenced from: /Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so 展开
File "<stdin>", line 1, in <module>
File "MySQLdb/__init__.py", line 19, in <module>
import _mysql
ImportError: dlopen(/Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so, 2): Library not loaded: libmysqlclient.18.dylib
Referenced from: /Library/Python/2.7/site-packages/MySQL_python-1.2.4b4-py2.7-macosx-10.8-intel.egg/_mysql.so 展开
2个回答
展开全部
只是一个小失误。不能用import _mysql, 而是用
import MySQLdb
或者是import mysql
前面加一个下划线,通常说明是C语言写的库。内部使用,正式调用还是要用没有下划线的。
MySQLdb/__init__.py这个提示说明,在site-packages目录里有一个子目录MySQLdb, 而__init__.py就是说你可以import它。
import MySQLdb
或者是import mysql
前面加一个下划线,通常说明是C语言写的库。内部使用,正式调用还是要用没有下划线的。
MySQLdb/__init__.py这个提示说明,在site-packages目录里有一个子目录MySQLdb, 而__init__.py就是说你可以import它。
追问
缺libmysqlclient.18.dylib这个东西,链接都到这里面/usr/lib/就OK了
追答
呵,刚才没有看下面的异常提示。只看到你写的import 就直接回复了。不客气。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的电脑里没有安装mysql,所以没有libmysql这个动态链接库文件。
追问
有啊。我电脑里面有MySQL啊。
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 78
Server version: 5.5.28 MySQL Community Server (GPL)
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询