Home > Software engineering >  I received this error while trying to run the following command (PHP artisan serve) what can I do ?
I received this error while trying to run the following command (PHP artisan serve) what can I do ?

Time:05-23

the error that I encountered when I wanted to run my website

CodePudding user response:

You can try to run composer install or composer update to install all libraries first

CodePudding user response:

You cloned it from Github so it does not have any vendor folder in it so just run

composer install

or

composer update

  • Related