我已经安装了 PHP,安装 GDLib 最简单(最好)的方法是什么?
我正在运行一台 Mac Mini,并使用 Apache/PHP5/MySQL 作为我的临时服务器。 我正在构建和使用需要 GDLib 来操作图形的软件。
我怎样才能在我的机器上安装它? 我不是一个 CI 大师,但我并不害怕它。当 ./configure 说文件未安装在最后或其他什么情况时,我只是不知道如何解决错误或问题。
对此的任何帮助都会很棒! 谢谢 富有的
I'm running a Mac Mini with Apache/PHP5/MySQL as my staging server.
I'm building and using software that requires GDLib for manipulating graphics.
How can I install this on my machine?
Im not much of a CI guru but Im not scared of it. I just have no clue how to troubleshoot errors or problems when ./configure says file not installed at the end or something.
Any help on this would be fantastic!
Thanks
Rich
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
安装 MAMP,您可以将其设置为在端口 :80 上运行,并且您仍然可以编辑您的配置,以便 www. example.site 工作得很好。我也有我的设置,因此所有文件仍然保存在 /Sites/ 文件夹中。
对于非系统管理员来说,修复 OS X 捆绑包中的 Apache/MySQL/PHP 设置是非常痛苦的,特别是如果您只是想继续构建站点。
Install MAMP, you can set it to run on port :80 and you can still edit your config so www.example.site works just fine. I also have mine set so all of the files are still kept inside the /Sites/ folder.
Fixing the Apache/MySQL/PHP setup that comes bundles with OS X is very painful for non sysadmins, esp if you just want to get on with building sites.
如果您可以升级到 Snow Leopard,它是开箱即用的。否则,请参阅此处的说明应该有帮助。
If you can upgrade to Snow Leopard it's included out of the box. Otherwise, the instructions here should help.
通常 gd 默认包含在内。检查
phpinfo()
,如果有提到任何gd,则它已安装。Normally gd is included by default. Check
phpinfo()
, if there is any gd mentioned then it is installed.