全局安装composer的步骤如下:https://getcomposer.org/doc/00-intro.md#globally
命令有:curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
但最初的命令是:curl -sS https://getcomposer.org/installer | php
返回:curl: (7) Failed connect to getcomposer.org:8888; Connection refused
如果将:80
放到url上,则命令:curl -sS https://getcomposer.org:80/installer | php
返回:curl: (7) Failed connect to getcomposer.org:8888; Connection refused
如果使用-P
命令告诉端口:curl -sS -P 80 https://getcomposer.org/installer | php
返回:curl: (7) Failed connect to getcomposer.org:8888; Connection refused
这里有人:Installing composer using vagrant, hhvm, and Ubuntu 14.04
我试过了结果是:
命令:wget https://getcomposer.org/installer
返回:--2014-08-29 19:13:24-- https://getcomposer.org/installer Connecting to 127.0.0.1:8888... failed: Connection refused
。
命令:wget https://getcomposer.org:80/installer
。
returns: --2014-08-29 19:13:40-- https://getcomposer.org:80/installer Connecting to 127.0.0.1:8888... failed: Connection refused
我在Linux Mint Debian版本上安装它,它抱怨端口8888
我可以pinggetcomposer.org
和telnet getcomposer.org:80
有人能看出我做错了什么?
有人对这个问题投了反对票,但不知道出了什么问题
最佳答案
这不是一个完美的答案,但它解决了我。
点击网址
https://getcomposer.org/installer
它会下载一个文件名“installer”,
现在转到下载文件夹
运行此命令
php installer
它将为您提供新的文件生成器.phar
这正是您将从该命令中获得的文件
curl -sS https://getcomposer.org/installer | php