Installing mysql-python on Centos

前端 未结 5 1604
逝去的感伤
逝去的感伤 2020-12-03 01:45

I\'m trying to get the MySQL-python lib installed on centos 5.5. I ran

sudo yum install MySQL-python

but then when I tried:



        
5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-03 02:16

    mysql-python NOT support Python3, you may need:

    sudo pip3 install mysqlclient
    

    Also, check this post for more alternatives.

提交回复
热议问题