Skip to content

Instantly share code, notes, and snippets.

View muslu's full-sized avatar

Muslu YÜKSEKTEPE muslu

View GitHub Profile
@muslu
muslu / python36-alpine-install.sh
Last active March 17, 2021 10:22
Install Python3.6 on Alpine
cd /tmp/
apk add build-base zlib-dev openssl-dev nano
wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz
tar xvf Python-3.6.9.tgz
rm -rf Python-3.6.9.tgz
cd Python-3.6.9
./configure --with-ensurepip=install --without-tests --disable-tests
make -j8 build_all
make -j8 altinstall
cd ..