Skip to content

Instantly share code, notes, and snippets.

@instaBOT
Created October 13, 2016 15:13
Show Gist options
  • Save instaBOT/dfb7eac79158ee8b098a90aa288d5713 to your computer and use it in GitHub Desktop.
Save instaBOT/dfb7eac79158ee8b098a90aa288d5713 to your computer and use it in GitHub Desktop.
Install Python 3.5.x in Ubuntu 14.04. Includes packages 'python3.5' and 'python3.5-dev', and latest 'pip'
#!/usr/bin/env bash
set -eu
sudo add-apt-repository --yes ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install --yes python3.5 python3.5-dev
wget -q -O - https://bootstrap.pypa.io/get-pip.py | sudo python3.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment