Skip to content

Instantly share code, notes, and snippets.

@dkleissa
Created August 13, 2018 20:38
Show Gist options
  • Save dkleissa/f254aee63e6812431906517f5e6cf676 to your computer and use it in GitHub Desktop.
Save dkleissa/f254aee63e6812431906517f5e6cf676 to your computer and use it in GitHub Desktop.
Getting Python3.6 + pip up and running on AWS Linux
#!/usr/bin/env bash
# Update
sudo yum update
# Install python36, headers, and gcc
sudo yum install python36 python36-devel python36-libs python36-tools git gcc-c++
# Link pip-3.6 to pip3 so you don't lose your mind trying to find pip
sudo ln -s /usr/bin/pip-3.6 /usr/bin/pip3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment