我是Symfony的新手,我只是尝试安装它,一切进展顺利,但是当我使用命令安装Composer时:
amhg$ curl -sS https://getcomposer.org/installer | php
我收到了这条消息
Composer successfully installed to: /Users/amhg/composer.phar
Use it: php composer.phar
Some settings on your machine may cause stability issues with Composer.
If you encounter issues, try to change the following:
The OpenSSL library (0.9.8r) used by PHP does not support TLSv1.2 or TLSv1.1.
If possible you should upgrade OpenSSL to version 1.0.1 or above.
所以我尝试更新OpenSSL库的版本,但我刚创建了一个烂摊子,现在我没有安装任何openssl
amhg$ openssl version -a
-bash: openssl: command not found
但奇怪的是,如果我去
amhg$ cd /usr/bin
并使用ls
我实际上可以看到,这些文件夹:
openssOld
openssl
openssOld
我已经尝试了不同的方法来安装openssl,但我不知道再做什么了,我只是让它变得更复杂
使用symfony真的有必要openssl吗?还是作曲家?
有什么建议吗?
答案 0 :(得分:0)
如果你运行/usr/bin/openssl version -a
,你会得到什么?也许它只是没有安装在你的路径上了?
答案 1 :(得分:0)
sudo dpkg-reconfigure openssl
它应该恢复openssl安装和配置
您可以通过调用不带https的安装文件来安装composer
curl -sS http://getcomposer.org/installer | php