1)採用一鍵安裝包php
http://laravelacademy.org/resources-downloadlaravel
2)Mac 上安裝web
----------在Mac上安裝composer----------bash
curl -sS https://getcomposer.org/installer | php
這樣就在根目錄下下載了composerapp
爲了使用能夠在全局中使用咱們在下載的composer移動到bin目錄下composer
mv composer.phar /usr/local/bin/composer
----------在Mac上安裝Laravel----------curl
1>全局安裝laravel:ui
composer global require "laravel/installer"
咱們安裝的內容在~/.composer目錄下url
咱們如今還不能使用laravel,咱們還須要在$PATH下配置一下spa
vi ~/.bash_profile
添加
export PATH=$PATH:~/.composer/vendor/bin
使用命令刷新
source ~/.bash_profile
這時候咱們就能夠使用laravel命令了
laravel new 項目名
2>使用composer安裝laravel
composer create-project laravel/laravel --prefer-dist 項目名
----------啓動Laravel服務----------
定位到項目文件夾下
1>
php -S localhost:8001 -t public/
這樣訪問localhost:8001就能夠訪問了
2>
php artisan serve
這樣訪問localhost:8000就能夠訪問了