Created
October 13, 2016 15:13
-
-
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'
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
#!/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