33
votes

I am a newbie to Laravel, have been trying to install Laravel, wasted three hours unfortunately didn't work. When I access through public directory, I get these errors:

Warning: require(C:\wamp\www\laravel\bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:\wamp\www\laravel\bootstrap\autoload.php on line 17 Call Stack

And the following:

Fatal error: require(): Failed opening required 'C:\wamp\www\laravel\bootstrap/../vendor/autoload.php' (include_path='.;C:\php\pear') in C

9

9 Answers

38
votes

Did you install Laravel's dependencies? When you unzip the framework in your work environment (i.g. htdocs) you must install the necesary dependencies with the command php composer.phar install (assuming you have installed composer and git). When that is done, you will be able to see the home page of the framework.

27
votes

I had same problem on Windows(Also works for Mac).

Solution:

  1. Install composer
  2. Open cmd
  3. Navigate to your laravel application root
  4. Run composer install command in cmd

Done!

2
votes

This message occurs for Laravel's dependencies. If never run composer install in your project then run this command on the terminal. Else run composer update --no-scripts. All Laravel dependencies will download.

0
votes

To get around this problem, doing a composer self-update would do the trick. Moreover, as long as the composer command itself works in your command-line/bash (which means you have it in your PATH) you don't necessarily need to go the actual path where composer.phar resides in (i.e. c:/ProgramData/Composer/bin or whatsoever).

0
votes

Your Laravel installer is giving an error.

Do composer global require "laravel/installer"

Then the new Laravel installer will be installed. Your new Laravel will not return an error then.

0
votes

if you are migrating the project,try to delete composer.lock and then composer install .this worked for me!

0
votes

This error indicates it can not find "autoload.php" under the vendor folder.

Make sure the vendor folder is generated by running the "composer install" command and the autoload.php file also created.

0
votes

In Windows CMD I faced similar issue and fixed with this command below. After clone a laravel project from my git repository, there was no /vendor directory (logically). This below command creates fresh new /vendor directory and appropriate autoload.php file inside it.

composer update --no-scripts
-1
votes

Just make your storage folder writable. This can be found in your app directory

In your terminal use this command

chmod +w <directory> or chmod a+w <directory>

Make sure you navigate to the directory containing the directory you want to make writable or you point to that path.