Skip to content

Instantly share code, notes, and snippets.

@PostgreSqlStan
Last active December 9, 2021 21:16
Show Gist options
  • Save PostgreSqlStan/8a757e8453b8b9fb2e4853a13988824c to your computer and use it in GitHub Desktop.
Save PostgreSqlStan/8a757e8453b8b9fb2e4853a13988824c to your computer and use it in GitHub Desktop.
Install python 3 from source on MacOS
# tested on macOS 11.5.2 (Big Sur) after installing openssl and xz
curl -OL https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tgz
tar -xvf Python-3.9.7.tgz
cd Python-3.9.7/
./configure
make
make test # optional
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment