ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# Linux 系统下使用 Phalcon 开发工具(Phalcon Developer Tools on Linux) These steps will guide you through the process of installing Phalcon Developer Tools for Linux. ## 预备知识(Prerequisites) The Phalcon PHP extension is required to run Phalcon Tools. If you haven’t installed it yet, please see the[Installation](http://docs.iphalcon.cn/reference/install.html)section for instructions. ## 下载(Download) You can download a cross platform package containing the developer tools from the[Download](http://phalconphp.com/download)section. Also you can clone it from[Github](https://github.com/phalcon/phalcon-devtools). Open a terminal and type the command below: ~~~ git clone git://github.com/phalcon/phalcon-devtools.git ~~~ ![../_images/linux-1.png](http://docs.iphalcon.cn/_images/linux-1.png) Then enter the folder where the tools were cloned and execute ”. ./phalcon.sh”, (don’t forget the dot at beginning of the command): ~~~ cd phalcon-devtools/ . ./phalcon.sh ~~~ ![../_images/linux-2.png](http://docs.iphalcon.cn/_images/linux-2.png) Create a symbolink link to the phalcon.php script: ~~~ ln -s ~/phalcon-devtools/phalcon.php /usr/bin/phalcon chmod ugo+x /usr/bin/phalcon ~~~ Congratulations you now have Phalcon tools installed! ### 相关指南(Related Guides) * [Using Developer Tools](http://docs.iphalcon.cn/reference/tools.html) * [Installation on Windows](http://docs.iphalcon.cn/reference/wintools.html) * [Installation on Mac](http://docs.iphalcon.cn/reference/mactools.html)