How do I install Laravel on my operating system (Windows, macOS, Linux)?
Jun 19, 2025 am 12:31 AMYes, you can install Laravel on any operating system by following these steps: 1. Install PHP and required extensions like mbstring, openssl, and xml using tools like XAMPP on Windows, Homebrew on macOS, or apt on Linux; 2. Install Composer, using an installer on Windows or terminal commands on macOS/Linux, and verify its functionality; 3. Create a new Laravel project via Composer with the command create-project or use the Laravel installer after installing it globally; 4. Set up a local development server using php artisan serve or configure more advanced setups like Apache/Nginx or Laravel Homestead/Sail for real development work.
Sure, you can install Laravel on any operating system — Windows, macOS, or Linux. The process is quite similar across all platforms, with only minor differences in command-line tools and environment setup.
1. Install PHP and Required Extensions
Before installing Laravel, make sure your system has PHP installed along with a few essential extensions.
- On Windows, you can use tools like XAMPP or WAMP, which come with PHP pre-configured.
- On macOS, you can use Homebrew to install PHP via
brew install php
. - On Linux (Ubuntu), run:
sudo apt update sudo apt install php php-cli php-mbstring php-xml php-pdo php-mysql
Make sure these extensions are enabled:
mbstring
openssl
tokenizer
xml
ctype
json
You can check your PHP version by running php -v
.
2. Install Composer
Laravel uses Composer for dependency management.
- On Windows, download and run the Composer installer.
- On macOS/Linux, run this command in your terminal:
curl -sS http://miracleart.cn/link/521eae94653641ec7be496db736ce3f6installer | php sudo mv composer.phar /usr/local/bin/composer
After installation, verify it works by typing composer
in your terminal or command prompt.
3. Create a New Laravel Project
Once Composer is installed, creating a new Laravel project is straightforward.
Run this command in your terminal:
composer create-project --prefer-dist laravel/laravel myproject
Replace myproject
with your desired folder name.
Alternatively, if you have the Laravel installer globally installed, you can do:
laravel new myproject
Note: To install the Laravel CLI globally, run:
composer global require laravel/installerAnd make sure your system's PATH includes the Composer global binaries directory (e.g.,
~/.composer/vendor/bin
on macOS/Linux or%USERPROFILE%\AppData\Roaming\Composer\vendor\bin
on Windows).
4. Set Up a Local Development Server
Laravel comes with a built-in development server for quick testing.
Navigate into your project folder:
cd myproject
Then run:
php artisan serve
Open your browser and go to http://localhost:8000
— you should see the Laravel welcome page.
For real development work, you might want to set up something more robust like Apache/Nginx or use Laravel Homestead or Laravel Sail (especially useful on Linux/macOS).
That’s basically how you install Laravel on any OS. It's not complicated once you have PHP and Composer working correctly. Just follow the steps and pay attention to any error messages during setup — they usually point to missing dependencies or configuration issues.
The above is the detailed content of How do I install Laravel on my operating system (Windows, macOS, Linux)?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

To upgrade Filebeat to the latest version in the Debian operating system, you can refer to the following steps: Method 1: Refresh the APT package index with the help of APT package management tool and enter the following command to refresh the APT package index after opening the terminal: sudoaptupdate Execute the new version of Filebeat installation and run the following command to complete the installation of the new version of Filebeat: sudoaptinstallfilebeat check the installation status After the installation is completed, you can confirm the specific version of Filebeat: filebeatversion Method 2: Manually download and install to obtain the latest version of Filebeat Go to Fil on Elastic's official website

The main difference between Java and other programming languages ??is its cross-platform feature of "writing at once, running everywhere". 1. The syntax of Java is close to C, but it removes pointer operations that are prone to errors, making it suitable for large enterprise applications. 2. Compared with Python, Java has more advantages in performance and large-scale data processing. The cross-platform advantage of Java stems from the Java virtual machine (JVM), which can run the same bytecode on different platforms, simplifying development and deployment, but be careful to avoid using platform-specific APIs to maintain cross-platformity.

The installation and configuration of MySQL can be completed through the following steps: 1. Download the installation package suitable for the operating system from the official website. 2. Run the installer, select the "Developer Default" option and set the root user password. 3. After installation, configure environment variables to ensure that the bin directory of MySQL is in PATH. 4. When creating a user, follow the principle of minimum permissions and set a strong password. 5. Adjust the innodb_buffer_pool_size and max_connections parameters when optimizing performance. 6. Back up the database regularly and optimize query statements to improve performance.

How to stop Microsoft Edge Automatically Update Microsoft Edge is the default browser that comes with Windows 11. Earlier, the Edge browser received updates as the Windows operating system was updated. However, the Edge browser based on Chromium has changed that. The browser will now automatically update in the background without your knowledge. In this article, we will explain how to stop automatic Microsoft Edge updates in Windows 11 and macOS. Related: How to disable automatic updates in Google Chrome? Check for automatic edge updates Chromium-based Edge vs. Goo based on Chromium backend code

In the Debian operating system, the integration of Filebeat and Elasticsearch can simplify the collection, transmission and storage of log data. The following are the specific implementation steps: Step 1: The first task of deploying Elasticsearch is to complete the installation of Elasticsearch in the Debian system. You can download the corresponding version of the Elasticsearch software package from the Elastic official website and complete the installation process according to the official guidance. Download and install Elasticsearchwgethttps://artifacts.elastic.co/downloads/elasticse

Entering CSGO HD blockbuster mode requires four steps: 1. Update the game client to the latest version; 2. Adjust the video settings to the highest parameters; 3. Start the game and enter high-definition mode; 4. Optimize performance and test adjustments. Through these steps, you can improve the gaming experience of CSGO and enjoy a clearer picture and a more immersive gaming environment.

VSCode solves the problems of multilingual project coding and garbled code including: 1. Ensure that the file is saved with correct encoding and use the "redetection encoding" function; 2. Set the file encoding to UTF-8 and automatically detect the encoding; 3. Control whether to add BOM; 4. Use the "EncodingConverter" plug-in to convert encoding; 5. Use the multiple workspace functions to set encoding for different sub-projects; 6. Optimize performance and ignore unnecessary file monitoring. Through these steps, the coding problem of multilingual projects can be effectively dealt with.

Java middleware is a software that connects operating systems and application software, providing general services to help developers focus on business logic. Typical applications include: 1. Web server (such as Tomcat and Jetty), which handles HTTP requests; 2. Message queue (such as Kafka and RabbitMQ), which handles asynchronous communication; 3. Transaction management (such as SpringTransaction), which ensures data consistency; 4. ORM framework (such as Hibernate and MyBatis), which simplifies database operations.
