# How to install laravel 9

## Install Laravel 9 In Local

Today I am going to explain how you can Install Laravel 9.

## Laravel Installation Guide.
Laravel documented the [Installation Guide](https://laravel.com/docs/9.x#installation-via-composer) you can read the document to get more details.

## Tech Requirement
- PHP 8.0.2
- MySql
- Composer

## Install Via Composer
Create First Laravel 9 Project
```php
composer create-project laravel/laravel first-laravel9
```

Now GO to the Installed Directory

```php
cd first-laravel9
```

Next to serve the application 
```php
php artisan serve
```

You can use [Laravel Valet](https://laravel.com/docs/9.x/valet#main-content) to set up a local development environment in macOS.

All Set, Click on served Link and you can see the output as below.

![Laravel 9](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k3mxkjwt121xwp0tn3ai.png) 

The Installation Tutorial is below in the video.

%[https://youtu.be/73PTcTSiIPw]

If you face any issues while installing, please comment with your query.

Thank You for Reading

Reach Out To me.
[Twitter](https://twitter.com/techtoolindia)
[Instagram](https://www.instagram.com/techtoolindia/)
[TechToolIndia YouTube Channel](https://www.youtube.com/channel/UCOy6o08Yn9DtXMKqxhD9ivA)
