Skip to content

Instantly share code, notes, and snippets.

View PostgreSqlStan's full-sized avatar

PostgreSQL Stan PostgreSqlStan

View GitHub Profile
@PostgreSqlStan
PostgreSqlStan / install_python3.zsh
Last active December 9, 2021 21:16
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
@PostgreSqlStan
PostgreSqlStan / install_xz.zsh
Last active September 19, 2021 13:47
Install xz from source on MacOS
# tested on macOS 11.5.2 (Big Sur)
curl -OL https://tukaani.org/xz/xz-5.2.5.tar.gz
tar -xvf xz-5.2.5.tar.gz
cd xz-5.2.5/
./configure
make
make test # optional
sudo make install
@PostgreSqlStan
PostgreSqlStan / install_openssl.zsh
Last active September 19, 2021 13:47
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