如何使用 Windows 安装干预映像
Posted
技术标签:
【中文标题】如何使用 Windows 安装干预映像【英文标题】:How to install intervention image with Windows 【发布时间】:2015-08-02 10:13:39 【问题描述】:在 Intervention Image 的网站上,它说要安装最新版本,我必须运行以下命令:
php composer.phar require intervention/image
我使用的是 Windows 8.1,我想这不会起作用。我已经尝试过了,它说:无法打开输入文件:composer.phar
我错过了一些很容易的事情吗?
【问题讨论】:
This answer 可能会有所帮助。另外,请参阅this question 的答案 - 可能重复。 谢谢!!而不是做 php composer.phar 我只需要写 composer! 不客气。请不要忘记给原始答案的作者一些功劳,并接受您自己的答案:) Could not open input file: composer.phar error in symfony2 using wamp的可能重复 【参考方案1】:要使用composer,首先需要安装它。
https://getcomposer.org/doc/00-intro.md#installation-windows
【讨论】:
【参考方案2】:正如 Sinan Bolel 提到的,在 Windows 中,输入“composer”而不是“php composer.phar”,然后...
【讨论】:
【参考方案3】:首先你指向你的项目目录,然后你应该运行“composer需要干预/图像”命令。
你的结果是这样的
Admin@Admin-dell MINGW64 /c/xampp/htdocs/laravel_dev
$ composer require intervention/image
Using version ^2.3 for intervention/image
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing psr/http-message (1.0)
Loading from cache
- Installing guzzlehttp/psr7 (1.3.0)
Loading from cache
- Installing intervention/image (2.3.7)
Downloading: 100%
intervention/image suggests installing ext-imagick (to use Imagick based image processing.)
intervention/image suggests installing intervention/imagecache (Caching extension for the Intervention Image library)
Writing lock file
Generating autoload files
> Illuminate\Foundation\ComposerScripts::postUpdate
> php artisan optimize
Generating optimized class loader
Admin@Admin-dell MINGW64 /c/xampp/htdocs/laravel_dev
【讨论】:
【参考方案4】:使用这个命令
composer require intervention/image
【讨论】:
这已经是答案的一部分,你应该投票而不是重复【参考方案5】:composer require intervention/image
并在 config/app.php
中return [
...
$provides => [
...
Intervention\Image\ImageServiceProvider::class
],
$aliases => [
...
'Image' => Intervention\Image\Facades\Image::class
]
]
【讨论】:
以上是关于如何使用 Windows 安装干预映像的主要内容,如果未能解决你的问题,请参考以下文章