如何在Mac上将默认的LibreSSL设置为自制软件安装的LibreSSL

时间:2019-03-08 04:44:43

标签: macos openssl homebrew libressl

我在Mac上检查了LibreSSL的版本,这不是最新版本。

$ openssl version
LibreSSL 2.6.5

然后我通过自制软件安装了最新版本

homebrew install libressl

自制软件安装的是2.8.3。但是,在我安装新的并输入终端openssl version之后,它仍然显示LibreSSL 2.6.5,这意味着尚未将新的设置为默认值。

我知道自制软件具有不同的安装路径。但是我不知道如何将路径设置为LibreSSL的默认路径。如何在Mac中将LibreSSL的最新版本设置为默认版本?谁能给我一些建议?

1 个答案:

答案 0 :(得分:1)

如果要将LibreSSL的Homebrew版本作为默认版本,则必须将其放在PATH环境变量中。如果您输入:

brew info libressl

您将获得执行此操作所需的命令:

If you need to have libressl first in your PATH run:
  echo 'export PATH="/usr/local/opt/libressl/bin:$PATH"' >> ~/.bash_profile