composer安装问题

Getting the following when attempting a new install of composer:

The “https://getcomposer.org/versions” file could not be downloaded: failed to open stream: Operation timed out在这里插入图片描述
解决办法:
在自定义的composer目录下:
1、新建composer.bat文件,并写入:

	@echo OFF
	:: in case DelayedExpansion is on and a path contains ! 
	setlocal DISABLEDELAYEDEXPANSION
	php "%~dp0composer.phar" %*

2、下载composer.phar文件,官网就有,放置同一目录,如下。
在这里插入图片描述
下载地址

在这里插入图片描述
3、安装完成,进行测试(完美):
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_33055907/article/details/89848553