无法在 lubuntu 14.10 上重新安装 php5

无法在 lubuntu 14.10 上重新安装 php5

我想在 ubuntu 上重新安装 php5,但无法成功安装。之后我收到的消息sudo apt-get install php5是:

sudo apt-get install php5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
php5 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 201 not upgraded.

请帮帮我。

答案1

更新

php5 已经是最新版本。升级了 0 个程序,新安装了 0 个程序,要删除 0 个程序,还有 201 个程序未升级。

这证明你的系统中已经有php5。


只需在您的命令中您就不会重新安装,而是安装/更新:

sudo apt-get install php5 

正确的语法是添加--reinstall如下内容:

sudo apt-get install --reinstall php5 

相关内容