今天在安裝Laravel Debugbar 安裝包的過程當中出現了requires ext-gd * -> the requested PHP extension gd is missing from your system.的錯誤,谷歌了下,終於找到了解決的方法。php
該錯誤很明顯,缺乏GD庫,因此咱們須要經過命令來安裝。若是你的服務器是Ubuntu,能夠應用如下命令安裝GD:
nginx
(if you are on a Debian based server (such as Ubuntu) you can run the following command:)apache
apt-get install php5-gd
而後找到本身的服務器安裝路徑重啓:服務器
(1)Apache服務器重啓ui
/etc/init.d/apache2 restart
(2)Nginx服務器重啓方式spa
sudo service php5-fpm restart // 重啓php
sudo service nginx restart // 重啓nginx
This will restart your server and enable GD in PHP.rest
經過 phpinfo() 方法就能夠查看安裝信息:code