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 |
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) | |
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 |
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) | |
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 |
NewerOlder