현재 Ubuntu 18.04에 libssl-dev를 설치하려고 하는데 다음 문제가 발생합니다.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libssl-dev : Depends: libssl1.1 (= 1.1.0g-2ubuntu4.3) but 1.1.1b-1 is to be installed
Recommends: libssl-doc but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
업데이트, 재부팅 등과 같은 일반적인 작업을 모두 시도했습니다. 다른 곳에서 이 문제를 검색했지만 모든 결과에 대해 답변이 작동하지 않거나 너무 오래되었거나 관련이 없거나 존재하지 않았습니다. 필요한 경우 더 많은 정보를 제공해 드리겠습니다. 도움을 주셔서 감사합니다.
답변1
다음 명령을 실행하여 문제를 해결했습니다.
sudo apt install --reinstall libssl1.1=1.1.0g-2ubuntu4.3
sudo apt install libssl-dev
그런 다음 libssl이 다운그레이드될 때 제거되었던 몇 가지 패키지를 다시 설치했습니다. 이제 모든 일이 순조롭게 진행되는 것 같습니다.