Last active
December 9, 2021 21:16
-
-
Save PostgreSqlStan/8a757e8453b8b9fb2e4853a13988824c to your computer and use it in GitHub Desktop.
Install python 3 from source on MacOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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