Skip to content

Instantly share code, notes, and snippets.

@navid-taheri
Last active July 6, 2023 14:19
Show Gist options
  • Star 34 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • 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)
@MikeHandorf
Copy link

Works perfectly on WSL after the creators update.

@diegolovison
Copy link

In the line 10, I changed to: "Add the following line at the end of ~/.profile"

I guess that it is easy to understand.

Thank you.

@Punksolid
Copy link

at the first try on ubuntu 17.10

Copy link

ghost commented Dec 3, 2017

Thank you !

@topfloorstudio
Copy link

Thank you. Works perfect on 14.04 too. You a star

@gitraja
Copy link

gitraja commented Jan 23, 2018

perfect!!!!

@junglewp
Copy link

17.10 worked like a charm! Thank you so much !

@gcosgreave
Copy link

Ahhhh!! Worked like a charm thank you very much

@nikhilkaluskar
Copy link

Thanks. Just worked.

@jesslop
Copy link

jesslop commented Mar 1, 2018

I had an issue with the certificate:
Download error on https://pypi.python.org/simple/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645)
but you can resolve it by updating the certificates update-ca-certificates and it's all done

@irridescentrambler
Copy link

This works perfectly.

@transcend-all
Copy link

Thanks, this worked when nothing else did!

@marcossv9
Copy link

Awesome! Thanks!

@sputnik516
Copy link

Great! Much clearer than the official instructions!

@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