无法卸载 imagemagick

无法卸载 imagemagick

我只想imagemagick从 Ubuntu 16.04 卸载。运行时sudo apt remove imagemagick我得到以下输出:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
fonts-jsmath gnuplot-data gnuplot-tex gnuplot-x11 liblua5.1-0 maxima maxima-doc maxima-share
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
foomatic-filters libpaps0 paps
The following packages will be REMOVED:
bluez-cups cups cups-filters hplip imagemagick indicator-printers printer-driver-gutenprint printer-driver-hpcups printer-driver-postscript-hp
printer-driver-pxljr printer-driver-splix wxmaxima
The following NEW packages will be installed:
foomatic-filters libpaps0 paps
0 upgraded, 3 newly installed, 12 to remove and 0 not upgraded.
Need to get 111 kB of archives.
After this operation, 14.2 MB disk space will be freed.
Do you want to continue? [Y/n] n
Abort.

为什么要卸载cupswxmaxima?我以为 imagemagick 是一个简单的图形编辑器,但它有奇怪的依赖关系。我可以删除imagemagick而不删除wxmaximacups等吗?

答案1

在删除它之前,您应该知道您还将删除cups(这是打印系统的一部分)。

cups使用imagemagick其过滤器,虽然您可能不使用任何使用 ImageMagick 的过滤器,但我建议您保留它。

因此删除不是一个好主意imagemagick,因为删除它可能会破坏您的打印系统。

答案2

cups取决于cups-filterscups-filters取决于imagemagick。唯一可以删除的方法imagemagick是安装graphicsmagick-imagemagick-compat(这将涉及安装graphicsmagick)。wxmaxima还取决于imagemagick。你可以尝试:如何伪造已安装的软件包版本?,但谁知道如果这样做的话会发生什么。

答案3

这对我有用:

sudo su
apt autoremove --purge imagemagick
apt autoremove --purge imagemagick-6.q16
apt autoremove --purge imagemagick-6-common

相关内容