Mysql-python Install Failed With Exit Status 1120
So I tried running pip3 install MySQL-python and I got these error messages mysqlclient.lib(typelib.obj) : error LNK2001: unresolved external symbol ___iob_func mysqlclient.l
Solution 1:
MySQL-python
is only for Python 2. For Python 3 you need mysqlclient
, mysql-connector
or PyMySQL
.
Post a Comment for "Mysql-python Install Failed With Exit Status 1120"