[IT 관련 지식]/[Linux]
ubuntu 16.04 패키지 설치 libperl5.22:i386 의존성 오류
판톰
2022. 1. 12. 15:01
반응형
아래와 같이 libperl5.22:i386 의존 성 오류 발생 되는 경우 가 있다.
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
libsnmp30:i386 : Depends: libperl5.22:i386 (>= 5.22.1) but it is not installed
E: Unmet dependencies. Try using -f.
아래와 같이 수행해 주면 패키지 가 정상적으로 설치 되어진다.
sudo rm /usr/share/doc/libperl5.22/changelog.Debian.gz
sudo apt-get install -f
반응형