1

Я просто попытался удалить клиент MySQL с помощью

apt-get remove mysql-client-5.1

но выходит ошибка:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libnet-daemon-perl libhtml-template-perl libdbi-perl mysql-client-core-5.1
  libdbd-mysql-perl libplrpc-perl mysql-server-core-5.1
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  mysql-client-5.1 mysql-server-5.1
0 upgraded, 0 newly installed, 2 to remove and 5 not upgraded.
1 not fully installed or removed.
After this operation, 34.8MB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 29745 files and directories currently installed.)
Removing mysql-server-5.1 ...
mysql stop/waiting
Removing mysql-client-5.1 ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
Setting up python-setuptools (0.6.10-4ubuntu1) ...
/var/lib/dpkg/info/python-setuptools.postinst: 10: pycentral: not found
dpkg: error processing python-setuptools (--configure):
 subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
 python-setuptools
E: Sub-process /usr/bin/dpkg returned an error code (1)

Как мне завершить удаление?

3 ответа3

2

Похоже, что pycentral - по какой-то причине - не установлен в вашей системе, хотя python-setuptools зависит от него.

apt-get install -y python-central
apt-get remove -y mysql-client-5.1

должен решить проблему и удалить MySQL.

2

Это не связано с MySQL. У вас есть пакеты, которые не были завершены с момента последнего запуска apt-get . Проблема в том, что Python установлен неправильно. Установите pycentral с помощью apt-get install pycentral и это должно исправить ваши проблемы.

0

-f apt-get попытается решить проблемы.

apt-get -f install

От: http://www.linux.com/archive/feed/48910 :

Запустите apt-get -f install или apt-get -f remove без указания пакета, чтобы принудительно завершить установку пакетов.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .