Ubuntu VM python2 pathlib 安装错误

Ubuntu VM python2 pathlib 安装错误

所以我在 Ubuntu VM 中尝试了一些 python 2 脚本。我安装了 python 2。其中一个脚本需要模块pathlib。尝试安装它但收到一条错误消息:

~/Desktop$ sudo apt-get install -y python-pathlib
E: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 8632 (unattended-upgr)
N: Be aware that removing the lock file is not a solution and may break your system.
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

我想知道这意味着什么,当然我也想知道为什么会发生这种情况。我很感激任何帮助!

干杯!

答案1

您看到此错误是因为其他程序正在尝试更新 Ubuntu。当命令或应用程序正在更新系统或安装新软件时,它会锁定 dpkg 文件(Debian 包管理器)。

进行这种锁定是为了防止两个进程同时更改内容,因为这可能会导致不必要的情况并可能导致系统崩溃。

阅读更多这里关于此错误以及如何解决它。

相关内容