Created
October 2, 2019 23:48
-
-
Save atomicstack/624ef9b19ea5bb5026cb9d3e62a5a30e to your computer and use it in GitHub Desktop.
python builder
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
| #!/bin/bash | |
| # extract tarball and run from its root dir. | |
| # wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz && tar -xvf Python-3.7.4.tgz | |
| sudo make clean && ( env LDFLAGS=-Wl,-rpath,/usr/local/python-3.7.4/lib ./configure --enable-optimizations --enable-shared --with-ssl --prefix=/usr/local/python-3.7.4 && make && sudo make install ) |& ( ts '[%F %T] ' | tee -a build.log ) | pv -l -s 10000 > /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment