데비안에 설치하려고 하면 libssl-dev
종속성이 필요하다는 메시지가 나타납니다.
적절한 설치 php5-dev 설치
Reading package lists... Done
Building dependency tree
Reading state information... Done
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:
php5-dev : Depends: libssl-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
설치 libssl-dev
패키지에는 종속성이 필요합니다 zlib1g-dev
. 설치 zliblg-dev
패키지의 종속성이 취소되었습니다.
The following packages have unmet dependencies:
zlib1g-dev : Depends: zlib1g (= 1:1.2.3.4.dfsg-3) but 1:1.2.7.dfsg-13 is to be installed
설치 패키지를 zlib1g-dev
설치하는 방법은 무엇입니까 dev5-php
?
답변1
다음을 입력하여 설치할 수 있습니다.
su -c 'aptitude install libssl-dev'
완료되지 않은 경우 출력을 공유해 주세요.
apt-cache show libssl-dev
답변2
디렉터리에서 텍스트를 게시하세요. /etc/apt/sources.list
저장소 목록이 충분한지 확인하세요. 보다협회, 한 번 볼만한 가치가 있을 것 같습니다.
답변3
저장소 파일에 다음 줄을 추가했습니다./etc/apt/sources.list
deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main
deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free
deb http://http.us.debian.org/debian jessie main contrib non-free
업데이트 후: apt-get update
위 줄을 추가하면 php5-dev
패키지를 성공적으로 설치할 수 있습니다!