ubuntu16.04 の公式ソフトウェア ライブラリには php5 がなく、php7 しか付属していないため、ubuntu は php5 をインストールできません。解決策は、14.04 をインストールするか、PPA を使用することです。
この記事の動作環境: ubuntu16.04 システム、PHP5 バージョン、DELL G3 コンピューター
Unable to install php5 under 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
このエラー メッセージが表示される理由は、16.04 の公式ソフトウェア ライブラリには php5 がなく、php7 のみであるためです。 php5 をインストールする場合は、14.04 をインストールするか、PPA を使用する必要があります。
[推奨学習: PHP ビデオ チュートリアル ]
以上がubuntu で php5 をインストールできない場合はどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。