설치하려고 sudo apt-get install libicu52
하면 다음 오류가 발생합니다.
우분투 15.10, 64 비트를 사용하고 있습니다.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libicu52 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libicu52' has no installation candidate
답변
답변
libicu55
대신 설치하십시오 .
sudo apt-get install -y libicu55
이 패키지를 검색 할 수도 있습니다.
sudo apt-get update
apt-cache search libicu
후자의 명령으로 일부 결과 (예 : libicu
이외의 버전 번호 52
)가 표시되는 경우 필요에 맞는 설치인지 확인할 수 있습니다.
답변
시험:
wget http://mirrors.kernel.org/ubuntu/pool/main/i/icu/libicu52_52.1-3ubuntu0.8_amd64.deb
dpkg -i libicu52*.deb
답변
여기 에서 해결책을 찾았습니다 . 따라서 .deb
패키지를 다운로드하고 다음을 통해 수동으로 설치하십시오.
sudo dpkg -i libicu52_52.1-3ubuntu0.8_amd64.deb
참조 : http : //packages.ubuntu.com/en/trusty/ libicu52`
답변
오늘이 문제에 부딪쳤다. Microsoft 패키지를 apt-get
소스에 다음과 같이 추가하여 수정했습니다 .
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/ubuntu/16.04/prod xenial main"
그때:
sudo apt-get update
그런 다음 libicu52
설치했습니다.
찾을 여기 .