处理时遇到错误:android-studio

处理时遇到错误:android-studio

每当我安装新软件或在终端上使用更新命令时,我总是收到此错误消息,并且更新也会中断。我该怎么办?

我遇到以下错误信息-

Errors were encountered while processing:
 android-studio
E: Sub-process /usr/bin/dpkg returned an error code (1)

答案1

仅仅因为包管理器在中断后继续运行并不意味着包本身不会包含错误。

尝试删除包并重新开始该过程。

首先清除包:

sudo apt-get purge android-studio

然后解决所有剩余问题:

sudo dpkg --configure -a   or
sudo apt-get update

再次运行安装:

sudo apt-get install android-studio

相关内容