ubuntu는 우분투 16.04의 공식 소프트웨어 라이브러리에 php5가 없기 때문에 php5를 설치할 수 없습니다. 해결 방법은 14.04를 설치하거나 PPA를 사용하는 것입니다.
이 글의 운영 환경: ubuntu16.04 시스템, PHP5 버전, DELL G3 컴퓨터
ubuntu16.04에서 php5를 설치할 수 없는 문제에 대한 해결 방법
이전 프로젝트가 ubuntu16.04에서 작성되었기 때문에 php5를 배포하고 싶습니다. ubuntu16.04로 업그레이드할 때 php5 버전을 설치해야 합니다. 다음 명령을 실행하면 다음 프롬프트가 나타납니다.
lhs@taing:/var/www/html$ sudo apt-get install php5 Reading package lists... Done Building dependency tree Reading state information... Done Package php5 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 'php5' has no installation candidate lhs@taing:/var/www/html$ sudo apt-get install libapache2-mod-php5 Reading package lists... Done Building dependency tree... 50% Building dependency tree Reading state information... Done Package libapache2-mod-php5 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 'libapache2-mod-php5' has no installation candidate
이 오류 메시지가 나타나는 이유는 php5가 없기 때문입니다. 16.04 공식 소프트웨어 라이브러리에 있으며 php7만 함께 제공됩니다. php5를 설치하려면 14.04를 설치하거나 PPA를 사용해야 합니다.
【추천 학습: PHP 비디오 튜토리얼】
위 내용은 우분투에서 php5를 설치할 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!