Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use python3 for Ubuntu 18.04+ #62

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions user_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Apt based distro
if command -v apt-get &>/dev/null; then
apt-get update
apt-get install python-pip jq -y
apt-get install python3-pip jq -y

# Yum based distro
elif command -v yum &>/dev/null; then
Expand All @@ -19,7 +19,7 @@ fi

#####################

pip install --upgrade awscli
pip3 install --upgrade awscli

##############

Expand Down