Last active
January 16, 2025 18:49
-
-
Save phuang07/a9f353a7a4a966cabc820138e12a7e33 to your computer and use it in GitHub Desktop.
Upgrade openssl on Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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