Debian11安装软件提示apt-listchanges:not found错误
apt安装软件提示apt-listchanges:not found错误
由于删除了一些旧版python
文件,导致装软件时候出现错误,如下:1
2
3/bin/sh: 1: /usr/bin/apt-listchanges: not found
E: 子进程 /usr/bin/apt-listchanges --apt || test $? -lt 10 返回了一个错误号 (1)
E: Failure running script /usr/bin/apt-listchanges --apt || test $? -lt 10
解决办法:
查看错误具体原因
1 | apt-listchanges |
解决办法
按提示创建软链接到该目录1
sudo ln -s /usr/local/python/python3.11/bin/python3.11 /usr/bin/python3
相关文章