這是我的代碼:我想連接到webpy MySQL,但我得到這個錯誤:<類型「exceptions.ImportError」>
import web
import MySQLdb
urls = ('/', 'capture')
app = web.application(urls,globals())
class capture:
def GET(self):
db = web.database(dbn='mysql', db='mydata', user='root', pw='123456')
if __name__ == "__main__":
app.run()
,我跑了它,並打開本地主機頁面並得到錯誤:
"<type 'exceptions.ImportError'> at/this is MySQLdb version (1, 2, 4, 'beta', 4), but _mysql is version (1, 2, 3, 'final', 0)"
我們該如何解決問題。
嘗試導入'MySQLdb' –
這就是得到相同的錯誤:( – user3789719
看看這個http://stackoverflow.com/questions/7137214/django-mysqldb-version-doesnt-match-mysql-version-ubuntu –