我想在Mac OS上安装Symfony 3.0,使用以下命令:
$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
$ sudo chmod a+x /usr/local/bin/symfony
出现以下错误:
curl: (35) SSL peer handshake failed, the server most likely requires a client certificate to connect
任何解决方案?
答案 0 :(得分:0)
部分找到解决方案,假设您已在Mac上安装了Homebrew 您可以使用
下载安装程序文件$wget https://symfony.com/installer
并将其放在此目录中:
$mv installer /usr/local/bin/symfony
通过将名称从安装程序更改为symfony,然后执行:
$sudo chmod a+x /usr/local/bin/symfony
$source .bash_profile
但是,我不知道该怎么做才能自动完成它。