博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Unbuntu 上安装Phalcon
阅读量:6574 次
发布时间:2019-06-24

本文共 1166 字,大约阅读时间需要 3 分钟。

  hot3.png

Phalcon是一个用C实现的扩展,所以您可以下载适合您机器的二进制格式文件或者使用源代码进行编译。

Ubuntu

如果要再Unbuntu上安装Phalcon,请按照以下步骤操作:

sudo apt-add-repository ppa:phalcon/stablesudo apt-get updatesudo apt-get install php5-phalcon

If you wish to install the legacy version of Phalcon (1.x) use the following PPA:

sudo apt-add-repository ppa:phalcon/legacy

如果你没有apt-add-repository请执行以下command:

# Ubuntu 14.04+sudo apt-get install software-properties-common# Ubuntu 12.04sudo apt-get install python-software-properties

编译

Linux下,使用源代码编译安装是很方便的。

安装要求

我们需要提前安装一些库:

  • PHP 5.x 开发工具包

  • GCC 编译器

#Ubuntu    sudo apt-get install php5-dev php5-mysql gcc libpcre3-dev#Fedora    sudo yum install php-devel php-mysqlnd gcc libtool#RHEL    sudo yum install php-devel php-mysql gcc libtool#Suse    yast2 -i php5-pear php5-devel php5-mysql gcc#OS X (Using Homebrew)    brew tap homebrew/dupes    brew tap homebrew/versions    brew tap homebrew/php    brew install php5x php5x-phalcon # Where "x" - minor number of PHP

编译

1. 从C源代码创建扩展请按照下面的步骤:

git clone --depth=1 git://github.com/phalcon/cphalcon.gitcd cphalcon/buildsudo ./install

2. 添加扩展到php.ini文件:

extension=phalcon.so

3. 最后,重启web服务器

转载于:https://my.oschina.net/jackin/blog/600463

你可能感兴趣的文章