Python MySQL wrong architecture error

后端 未结 12 2215

I\'ve been at this for some time and read many sites on the subject. suspect I have junk lying about causing this problem. But where?

This is the error when I impor

12条回答
  •  死守一世寂寞
    2020-12-08 05:12

    I had the same problem with MySQLdb in Mac OS X and Ubuntu, so I switched to the official MysQL Python Connector: (available on PyPI):

    sudo pip install mysql-connector-python
    

    or by download from: http://dev.mysql.com/downloads/connector/python/

    Documentation: http://dev.mysql.com/doc/refman/5.5/en/connector-python.html

    It's easy to use and also compatible with PEP 249 (Python DB API version 2.0).

提交回复
热议问题