沃梦达 / 编程问答 / php问题 / 正文

在 xampp 中使用 composer 安装 Laravel 4.1

Laravel 4.1 installation with composer in xampp(在 xampp 中使用 composer 安装 Laravel 4.1)

本文介绍了在 xampp 中使用 composer 安装 Laravel 4.1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想试用 Laravel 4.1 但不幸的是一开始就卡住了.当我尝试使用 Laravel 4.1 文档 中提到的 composer 安装它时,我在运行 "composer create 时收到以下 error-project laravel/laravel laravelProject --prefer-dist":

I wanted to try out the Laravel 4.1 but unfortunately got stuck at the very beginning. When i try to install it using composer as mentioned in the Laravel 4.1 documentation, i get the following error while running "composer create-project laravel/laravel laravelProject --prefer-dist":

[ComposerDownloaderTransportException]http://packagist.org/p/illuminate/filesystem$a5912ddb14272c0efa16e821a25bb68e39d3bac736aee7de62cb5641fd7133e3.json"文件无法下载:无法打开流:HTTP 请求失败!

[ComposerDownloaderTransportException] The "http://packagist.org/p/illuminate/filesystem$a5912ddb14272c0efa16e821a25bb68e39d3bac736aee7de62cb5641fd7133e3.json" file could not be downloaded: failed to open stream: HTTP request failed!

推荐答案

windows机器上安装laravel的四个简单步骤:

Four simple steps to install laravel on windows machine:

  1. 安装 xampp 后,只需从 https://getcomposer.org/download/ 下载 composer 并安装它.
  2. 转到路径 C:/xampp/htdocs 并创建一个文件夹作为 laravel,使用 cmd 提示符重定向到 laravel 作为 cd c:xampphtdocslaravel.
  3. 然后只需键入此命令即可创建第一个项目 composer create-project laravel/laravel first-project --prefer-dist将 first-project 替换为您的项目名称(安装需要几分钟)
  4. 然后重定向到 localhost/laravel/first-project/public/,现在您可以看到 Laravel 徽标以及一条快速消息您已到达".(始终使用公用文件夹访问项目)

这篇关于在 xampp 中使用 composer 安装 Laravel 4.1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:在 xampp 中使用 composer 安装 Laravel 4.1

基础教程推荐