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

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

    Execute following commands:

    brew update
    brew install openssl
    echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
    source ~/.bash_profile
    

    You will have the latest version of openssl installed and accessible from cli (command line/terminal). Since the third command will add export path to .bash_profile, the newly installed version of openssl will be accessible across system restarts.

提交回复
热议问题