Skip to content

Instantly share code, notes, and snippets.

View bilalbaraz's full-sized avatar
🏠
Working from home

Bilal BARAZ bilalbaraz

🏠
Working from home
View GitHub Profile
@bilalbaraz
bilalbaraz / install-python.sh
Created June 7, 2018 08:10
Install Python 3.6.5 in Ubuntu 16+
#!/bin/bash
export PYTHON_VERSION=3.6.5
export PYTHON_DOWNLOAD_URL=https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz
sudo apt update
sudo apt install --no-install-recommends -y \
software-properties-common build-essential \
libssl-dev libreadline-dev libbz2-dev libsqlite3-dev zlib1g-dev \
python-minimal