Debian Bullseye를 업그레이드한 후 다음 오류가 발생합니다:
Errors were encountered while processing:
python3
python3-ldb
apt-listchanges
lsb-release
python3-mediainfodll
caja-mediainfo
python3-distro
python3-talloc:amd64
python3-apt
python3-debconf
samba-libs:amd64
yelp
libsmbclient:amd64
mate-user-guide
gvfs-backends
각 패키지에는 다음 메시지가 있습니다.
dpkg: error processing package [PACKAGE NAME] (--configure):
dependency problems - leaving unconfigured
재구성을 시도했지만 동일한 오류가 발생했습니다.
sudo dpkg --configure -a
또한 재설치를 시도했지만 다음 오류가 발생했습니다.
sudo apt install --reinstall python3 --fix-broken
E: Internal Error, No file name for python3:amd64
답변1
python3
캐시의 패키지 파일이 apt
손상된 것 같습니다.
sudo apt clean
sudo apt reinstall python3
강제로 다시 다운로드하세요. 여전히 실패하면 패키지 파일을 수동으로 다운로드하고 설치하십시오.
wget http://deb.debian.org/debian/pool/main/p/python3-defaults/python3_3.9.2-3_amd64.deb
sudo dpkg -i python3_3.9.2-3_amd64.deb
그런 다음 계속 업그레이드해 보세요.
sudo dpkg --configure --pending