Created
September 5, 2019 00:50
-
-
Save richardjortega/2330ca4029b47e6165a67c6809db6f47 to your computer and use it in GitHub Desktop.
Install pip3 on Ubuntu 18.04
This file contains 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
# 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