Skip to content

Instantly share code, notes, and snippets.

@phuang07
Last active January 16, 2025 18:49
Show Gist options
  • Select an option

  • Save phuang07/a9f353a7a4a966cabc820138e12a7e33 to your computer and use it in GitHub Desktop.

Select an option

Save phuang07/a9f353a7a4a966cabc820138e12a7e33 to your computer and use it in GitHub Desktop.
Upgrade openssl on Mac
Ref: http://stackoverflow.com/questions/15185661/update-openssl-on-os-x-with-homebrew
```
1. Make sure openssl is installed via homebrew
homebrew install openssl
2. if /usr/local/bin is not already the first item in the $PATH, modify the PATH variable
set -gx PATH /user/local/bin $PATH
3. Make symlink to the binary
ln -s /usr/local/Cellar/openssl/1.0.2h_1/bin/openssl /usr/local/bin/openssl
4. Test if you have the updated openssl
which openssl
openssl -version -a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment