Skip to content

Instantly share code, notes, and snippets.

@PUYUP
Forked from PostgreSqlStan/install_python3.zsh
Created March 31, 2026 02:08
Show Gist options
  • Select an option

  • Save PUYUP/ae2accfae189692b3c90dc9c4e58e484 to your computer and use it in GitHub Desktop.

Select an option

Save PUYUP/ae2accfae189692b3c90dc9c4e58e484 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