Skip to content

Instantly share code, notes, and snippets.

@richardjortega
Created September 5, 2019 00:50
Show Gist options
  • Save richardjortega/2330ca4029b47e6165a67c6809db6f47 to your computer and use it in GitHub Desktop.
Save richardjortega/2330ca4029b47e6165a67c6809db6f47 to your computer and use it in GitHub Desktop.
Install pip3 on Ubuntu 18.04
# Ubuntu 18.04 already has python3
# Print python3 version
python3 -V
# Install pip3
apt update
apt -y upgrade
apt install -y python3-pip
# Add dev utils
apt install -y build-essential libssl-dev libffi-dev python3-dev python3-venv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment