在 xampp 中使用 composer 安装 Laravel 4.1

2022-01-08 00:00:00 php composer-php laravel-4

我想试用 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 徽标以及一条快速消息您已到达".(始终使用公用文件夹访问项目)

相关文章