How to install MySQLdb in Python 2.6 CentOS

后端 未结 4 2043
庸人自扰
庸人自扰 2021-01-18 08:36

I am getting this message when I use yum install mysql-python to install MySQLdb.

Loaded plugins: fastestmirror
Loading mirror speeds from cache         


        
4条回答
  •  粉色の甜心
    2021-01-18 09:27

    MySQL-python exists in PyPi. Try doing either of the following :

    pip install MySQL-python
    

    or

    easy_install MySQL-python
    

提交回复
热议问题