系統環境:ubuntu-14.10-server-i386(32) LAMP 系統默認安裝
根據:http://laravel.com/docs/5.1 官方文檔,准備通過 Composer 安裝
1、安裝 Composer .
參考:https://getcomposer.org/download/
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
2、安裝Laravel
2.1、下載依賴文件
omposer global require "laravel/installer=~1.1"
2.2、安裝Laravel
laravel new site
在這個過程中遇到:-bash: laravel: command not found。
解決方法是:
export PATH="$PATH:~/.composer/vendor/bin"