How to install latest version of openssl Mac OS X El Capitan

后端 未结 9 2287
无人及你
无人及你 2020-11-22 07:05

I have used brew install openssl to download and install openssl v1.0.2f, however, it comes back saying:

A CA file has been bootstrapped using c         


        
9条回答
  •  滥情空心
    2020-11-22 07:31

    You can run brew link openssl to link it into /usr/local, if you don't mind the potential problem highlighted in the warning message. Otherwise, you can add the openssl bin directory to your path:

    export PATH=$(brew --prefix openssl)/bin:$PATH
    

提交回复
热议问题