错误:/var/cache/apt/archives/ 中没有足够的可用空间

错误:/var/cache/apt/archives/ 中没有足够的可用空间

我正在尝试在 Oracle Virtualbox 中使用 Ubuntu 20.04。我无法使用 pip 或 pip3,因为它会引发错误:

Error:pip3 command not found

我尝试安装,但失败了。

$ sudo easy_install pip3
Error: easy_install command not found.

当我尝试使用:'

$ sudo apt-get install python3-pip
Error: Package 'python3-pip' has no installation candidate.

然后我运行了这个命令:

sudo apt-get update

然后,当我运行以下命令时出现错误:

$ sudo apt-get upgrade
ERROR: You don't have enough free space in /var/cache/apt/archives/

命令的输出df -H是:

这是我的终端屏幕

请帮忙,我想在我的虚拟机(ubuntu)上安装 pip

答案1

您可以使用以下方法清理 apt 缓存:

 sudo apt-get clean

相关内容