在 Ubuntu 14.04 LTS 中安装 PHP

在 Ubuntu 14.04 LTS 中安装 PHP

我有 ubuntu 14.04 LTS(32 位)。我想安装 php5.5。我安装了 apache 服务器,并且可以在本地主机上正确看到默认的 apache 服务器索引页。但是,当我尝试使用 安装 php5 时apt-get install php5,出现未满足依赖项的错误。

我也尝试:apt-get install lamp-server^但是我收到此错误:

The following packages have unmet dependencies:
php5-json : Depends: phpapi-20121212+lfs
E: Unable to correct problems, you have held broken packages.

任何想法?

答案1

尝试这个

sudo apt-get install tasksel

安装后从终端调用taskel

sudo tasksel install lamp-server

点击此链接

http://www.unixmen.com/install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat/

答案2

在您的终端上尝试一下。这是由tasksel提供的很棒的灯组设置向导。

sudo apt-get install taskel //then follow on screen instructions to install lamp stack

答案3

您还可以将 XAMPP 用于 apache 服务器和 php。

你可以从此站点下载 XAMPP https://www.apachefriends.org/index.html 下载后,右键单击下载的文件,然后单击属性,然后单击名为权限的选项卡,然后勾选允许将文件作为程序执行”,然后打开终端,导航到下载 xampp 的路径,然后写入以下命令

sudo ./filename_which_you_have_downloaded 就是这样现在通过弹出的窗口安装 xampp

相关内容