Home > Article > Backend Development > Laravel installation record
System environment: ubuntu-14.10-server-i386(32) LAMP system is installed by default
According to: http://laravel.com/docs/5.1 official document, ready to install through Composer
1. Install Composer.
Reference : Https: //getcomposer.org/download/
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
2, installation of Laravel
omposer global require "laravel/installer=~1.1"E
laravel new site
encountered in this process: -bash: laravel: command not found.
export PATH="$PATH:~/.composer/vendor/bin"
The above introduces the Laravel installation record, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.
🎜 🎜