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

后端 未结 9 2162
无人及你
无人及你 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:24

    This is an old question but still answering it in present-day context as many of the above answers may not work now.

    The problem is that the Path is still pointing to the old version. Two solutions can be provided for resolution :

    1. Uninstall old version of openssl package brew uninstall openssl and then reinstall the new version : brew install openssl
    2. point the PATH to the new version of openssl.First install the new version and now(or if) you have installed the latest version, point the path to it: echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile

提交回复
热议问题