我错误地通过命令从我的系统中删除了 cups
sudo apt-get remove cups-pdf
sudo apt-get remove cups
之后我尝试了下面
sudo dpkg -i cups-pdf_2.5.0-16_amd64.deb
Selecting previously unselected package cups-pdf.
(Reading database ... 167602 files and directories currently installed.)
Preparing to unpack cups-pdf_2.5.0-16_amd64.deb ...
Unpacking cups-pdf (2.5.0-16) ...
dpkg: dependency problems prevent configuration of cups-pdf:
cups-pdf depends on cups; however:
Package cups is not installed.
dpkg: error processing package cups-pdf (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
cups-pdf
你能帮我解决这个问题吗?
答案1
可能性一(假设:你不需要旧的cups-pdf
):
您删除了与之相关的软件包apt-get remove
,因此请使用以下方法重新安装它们apt-get install
:
sudo apt-get install cups-pdf
这将安装cups-pdf
其所有依赖项。
可能性二(假设:你需要旧的cups-pdf
):
消息明确指出安装sudo dpkg -i cups-pdf_2.5.0-16_amd64.deb
它需要cups
包,因此安装它:
sudo apt-get install cups
然后可以继续:
sudo dpkg -i cups-pdf_2.5.0-16_amd64.deb
注意:
在任何一种情况下都有可能(取决于你的如果您在系统状态中检测到依赖关系问题(例如,系统状态),则可能会出现另一个依赖关系问题,并且您必须阅读系统显示的消息并采取相应措施。