简体   繁体   中英

Can't install desired version of Laravel

I can't Install Laravel 6.0, when I run this command:

composer create-project laravel/laravel laravel_6.0

I want to install v6.0 but it comes with v5.8.17 .

How can I download the latest version of laravel? My Php version is 7.2.10

You will need to make sure your server meets the following requirements:

  • PHP >= 7.2.0
  • BCMath PHP Extension
  • Ctype PHP Extension
  • JSON PHP Extension
  • Mbstring PHP Extension
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension

And than First, download the Laravel installer using Composer:

composer global require laravel/installer

Once installed, the laravel new command will create a fresh Laravel installation in the directory you specify. Alternatively, you may also install Laravel by issuing the Composer create-project command in your terminal:

composer create-project --prefer-dist laravel/laravel blog

Or

composer create-project --prefer-dist laravel/laravel blog "6.0.*"

从今天开始,您可以使用以下命令安装 Laravel 版本 6:

composer create-project --prefer-dist laravel/laravel blog

I recently, updated all of my projects to laravel 6.0,

Laravel-6.0-安装-Ubuntu

I'm using, Ubuntu 19.04 by following command it works for my system

composer create-project --prefer-dist laravel/laravel your-project-name

Here are some few ways to install laravel by specifying version

composer create-project laravel/laravel=6.0 your-project-name --prefer-dist

composer create-project --prefer-dist laravel/laravel:6.0 your-project-name

composer create-project --prefer-dist laravel/laravel your-project-name "6.*"

It's not loaded into Packagist as an official version yet. Therefore, you need to use the "dev-develop" version which contains the latest unstable commit from GitHub:

$ composer create-project laravel/laravel laravel_6.0 dev-develop

re setup the composer. Show php 7 version when installing.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM