How to install Laravel 5.0

后端 未结 5 767
不知归路
不知归路 2020-12-12 15:17

I\'m having trouble getting a test instance of Laravel 5.0 up and running so I can assist with this transition.

1) Creating a new app from https://github.com/laravel

5条回答
  •  情深已故
    2020-12-12 16:05

    First you need to install laravel globally in your system by this command

    composer global require laravel/installer then you can install laravel by three ways, 1) Go to laravel github Reqosritory and download it's zip, and second it get ssh or Https url and install it from CMD or Git bash 2) open Git bash just write laravel new there, this will download the latest laravel verision 3) open cmd or git bash and write there. composer create-project --prefer-dist laravel/laravel blog if you want to install some old version then you can write the mention the version in last. composer create-project --prefer-dist laravel/laravel blog 5.2.*

提交回复
热议问题