作曲家安装失败作曲家

由网友(过往)分享简介:我正在尝试使用 PHP 版本 5.6.* 在我的 Ubuntu 16.04 中安装 composer.I'm trying to install composer in my Ubuntu 16.04 with PHP version 5.6.*. 我用过:curl -sS https://getcomposer....

我正在尝试使用 PHP 版本 5.6.* 在我的 Ubuntu 16.04 中安装 composer.

I'm trying to install composer in my Ubuntu 16.04 with PHP version 5.6.*.

我用过:curl -sS https://getcomposer.org/installer |php.但它给我的错误如下:

I used:curl -sS https://getcomposer.org/installer | php. But it is giving me error as follows:

All settings correct for using Composer
Downloading...
The "https://getcomposer.org/versions" file could not be downloaded: failed to open stream: Connection refused
Retrying...
The "https://getcomposer.org/versions" file could not be downloaded: SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed
Failed to enable crypto
failed to open stream: operation failed
Retrying...
The "https://getcomposer.org/versions" file could not be downloaded: SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed
Failed to enable crypto
failed to open stream: operation failed
The download failed repeatedly, aborting.

我之前没有安装作曲家.

I do not have composer installed previously.

推荐答案

我通过下载 解决了这个问题https://curl.haxx.se/ca/cacert.pem 并在我的 etc/php/5.6/cli/php.inietc/php 中给出它的路径/5.6/apache2/php.ini.

I solved the issue by downloading https://curl.haxx.se/ca/cacert.pem and giving it's path in my etc/php/5.6/cli/php.ini and etc/php/5.6/apache2/php.ini.

然后运行 ​​sudo service apache2 restart &&sudo apt install composer 工作正常.

Then after running sudo service apache2 restart && sudo apt install composer just worked fine.

阅读全文

相关推荐

最新文章