Zend 框架安装问题

Zend 框架安装问题

当我输入此命令时:

apt-get install zend-framework

我收到此错误:

dpkg: error processing zend-framework (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 php5-common
 php5-cli
 libapache2-mod-php5
 php5-curl
 php5-gd
 php5-intl
 php5-mysql
 php5-pspell
 php5-recode
 php5-snmp
 php5-sqlite
 php5-tidy
 php5-xmlrpc
 php5-xsl
 php-pear
 php5
 libzend-framework-php
 zend-framework-bin
 zend-framework
E: Sub-process /usr/bin/dpkg returned an error code (1)

我已经在我的 Ubuntu 12.10 上安装了 apache2、php5 和 mysql

答案1

你可以尝试另一条路线:

您可以使用,而不是在整个系统范围内安装 Zend Framework,作曲家并将 ZF 作为项目依赖项。通常,这是安装 ZF 和类似软件包的更简洁的方法。

一旦启动并运行了 Composer,您只需要在 composer.json 文件中执行以下代码:

{
    "require": {
        "zendframework/zendframework1": "1.*"
    },
}

本文可能会帮助您:http://adamcod.es/2013/05/10/composer-and-zend-framework-1.x.html

相关内容