How to Install Laravel in Ubuntu?
In this post, i will show you how to install laravel in ubuntu using composer. you can easily install laravel in ubuntu 16.04, ubuntu 18.04 and ubuntu 19.04 version. we can install laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 using composer command.
I will give you step by step instruction of how to install laravel in ubuntu os. so you have to just follow bellow step to installing laravel in ubuntu.
First you can see basic information of what is laravel let's see:
What is Laravel?
Laravel is a free open source PHP framework based on the MVC pattern. It's creatd by Taylor Otwell. Laravel provides expressive and elegant syntax that helps in creating a wonderful web application easily and quickly.
You can follow bellow step to install laravel in ubuntu:
Install Composer:
First step, we need to install composer. we must have to install composer in ubuntu system. you can install composer in your ubuntu system by using following command:
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
sudo chmod +x /usr/local/bin/composer
Laravel Requirements:
You must have some basic requirement of your ubuntu system. so you can see bellow basic requirement as listed bellow:
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
Install Laravel:
Now you can run bellow command to install laravel project in your ubuntu system. so let's run bellow command:
composer create-project --prefer-dist laravel/laravel blog
You can see bellow screen shot of your terminal:
Now it's install completed.
But if you have any permission issue then you can give permission to your storage folder as like bellow:
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap
Now we are ready to run project using serve command:
php artisan serve
Now you can open url as bellow:
http://localhost:8000
You can see layout as bellow:
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Show Pagination with Serial Number in Laravel?
- How to Generate a Dropdown List of Timezone in Laravel?
- How to use Bootstrap Icons in Laravel Vite?
- How to Install JQuery UI in Laravel Vite?
- How to Read Content from PDF File in Laravel?
- Laravel Array Length Validation Example
- Laravel Password and Confirm Password Validation Example
- How to Generate RSS Feed in Laravel?
- How to Install Composer using Command Line in Ubuntu?
- How to Uninstall Cordova and Ionic in Ubuntu?
- How to Uninstall a Composer Package in Laravel?
- How to Install Sublime Text Editor 3 in Ubuntu?