Skip to content

Instantly share code, notes, and snippets.

@navid-taheri
Last active July 6, 2023 14:19
Show Gist options
  • Save navid-taheri/7d6879df3446b38b864fcb7ac1b04ab3 to your computer and use it in GitHub Desktop.
Save navid-taheri/7d6879df3446b38b864fcb7ac1b04ab3 to your computer and use it in GitHub Desktop.
How to install eb cli (awsebcli) on Ubuntu 16.04
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install python3-setuptools
sudo easy_install3 pip
pip -V
#pip 9.0.1 from /usr/local/lib/python3.5/dist-packages/pip-9.0.1-py3.5.egg (python 3.5)
sudo chown -R username:username ~/.local/
# add to ./*shrc
export PATH=$PATH:~/.local/bin/
pip install --upgrade --user awsebcli
eb --version
#EB CLI 3.10.1 (Python 2.7.1)
@martink-io
Copy link

Line 13 - I used pip3 instead of pip and works like a charm.

@vendablefall
Copy link

Worked for me on ChromeOS using the Debian Linux subsystem :-)

@Palbahngmiyine
Copy link

Worked for me on Ubuntu 20.04 LTS, Thanks!

@the-REAL-beautysleep
Copy link

Worked for me on Ubuntu 20.04 LTS, Thanks!

same for me, Not sure why I was unable to use any of the AWS documentaion

@SeLub
Copy link

SeLub commented Oct 24, 2021

Ubuntu 20.04 LTS. Pop_OS

sudo apt-get update
sudo apt-get -y upgrade

sudo apt-get install python3-setuptools
sudo apt install python3-pip
pip -V

pip 20.0.2 from /usr/lib/python3/dist-packages/pip (python 3.8)

sudo chown -R $USER:$USER /.local/
export PATH=$PATH:
/.local/bin/

pip install awsebcli --upgrade --user
eb --version

EB CLI 3.20.2 (Python 3.8.1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment