Problema ao fazer o mysql funcionar corretamente

1

Estou instalando um aplicativo personalizado que precisa do mysql, o qual eu já tinha trabalhado, por isso estou um pouco confuso sobre o que está acontecendo.

De qualquer forma, aqui está o erro

Error loading MySQLdb module: this is MySQLdb version (1, 2, 4, 'final', 1), but _mysql is version (1, 2, 3, 'final', 0

Tentei

sudo pip uninstall MySQL-python

então

sudo pip install MySQL-python

que funcionou ...

Successfully installed MySQL-python

continua com o mesmo erro

Error loading MySQLdb module: this is MySQLdb version (1, 2, 4, 'final', 1), but _mysql is version (1, 2, 3, 'final', 0

    
por Guardian 07.11.2013 / 18:14

1 resposta

0

Parece que cada um dos apt-get e pip instalou sua própria versão da biblioteca. Tente remover o sistema mysql com sudo apt-get remove python-mysqldb e você deveria ter algo assim:

Reading package lists... Done Building dependency tree Reading state information... Done The following packages will be REMOVED: python-mysqldb 0 upgraded, 0 newly installed, 1 to remove and 3 not upgraded. After this operation, 196 kB disk space will be freed. Do you want to continue? [Y/n] y (Reading database ... 109333 files and directories currently installed.) Removing python-mysqldb (1.2.3-2ubuntu1) ...

    
por Yuri Baburov 08.11.2014 / 21:36