Skip to content

Instantly share code, notes, and snippets.

@PostgreSqlStan
Last active September 19, 2021 13:47
Show Gist options
  • Save PostgreSqlStan/bc70f91c139958d431b2ac0ff9d2303b to your computer and use it in GitHub Desktop.
Save PostgreSqlStan/bc70f91c139958d431b2ac0ff9d2303b to your computer and use it in GitHub Desktop.
Install openssl from source on MacOS
# tested on macOS 11.5.2 (Big Sur)
curl -OL https://www.openssl.org/source/openssl-3.0.0.tar.gz
tar -xvf openssl-3.0.0.tar.gz
cd openssl-3.0.0
./Configure # note the capital “C” - not an accident
make
make test
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment