Laravel 5.2-使用composer和gitbash安装Laravel时出错



我是laravel的新手,在使用composer安装laravel时,我看到一个错误。我试图找到解决方案,但最终一无所获。我还尝试了composer更新。但在安装时仍然面临问题,下面是命令。

命令:

composer create-project --prefer-dist laravel/laravel cms 5.2

错误:

致命错误:require():打开失败'C:\examplep\htdocs\cms\bootstrap//vendor/autoload.php’(include_path='C:\examplep\php\PEAR')C: 第17行的\axamp\htdocs\cms\bootstrap\autoload.phpPHP警告:require(C:\examplep\htdocs\cms\bootstrap/../vendor/autoload.PHP):无法打开流:中没有这样的文件或目录C: 第17行的\axamp\htdocs\cms\bootstrap\autoload.phpPHP致命错误:require():失败,需要打开'C:\examplep\htdocs\cms\bootstrap//vendor/autoload.php’(include_path='C:\examplep\php\PEAR')C: 第17行的\axamp\htdocs\cms\bootstrap\autoload.php脚本php手工清理编译处理预更新cmd事件返回错误代码为255

我尝试重新安装composer,但问题仍然存在。提前感谢

试试这个:

composer create-project --prefer-dist laravel/laravel cms "5.2.*"

注意*如果您已经有一个cms目录,请在运行上述命令之前先将其删除

阅读更多:https://laravel.com/docs/5.2/installation#installing-laravel

运行composer dump-autoload将解决此错误。

相关内容

  • 没有找到相关文章

最新更新