Install Openssl !!better!! -
openssl version
# Show version and build date openssl version -a install openssl
macOS comes with a version of OpenSSL (or LibreSSL) pre-installed, but it is often outdated. Use to install the latest version. Open Terminal. Install via Homebrew: brew install openssl Use code with caution. Copied to clipboard openssl version # Show version and build date
Most Linux distributions have OpenSSL pre-installed. However, you may need the development headers ( libssl-dev ) for compiling other software. Ubuntu / Debian sudo apt update sudo apt install openssl libssl-dev Use code with caution. CentOS / RHEL / Fedora sudo dnf install openssl openssl-devel Use code with caution. Compiling from Source (All Distributions) install openssl
echo 'export PATH="/opt/homebrew/opt/openssl@3/bin:$PATH"' >> ~/.zshrc source ~/.zshrc
# Fedora (dnf) sudo dnf install openssl