Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS Elastic Beanstalk (eb) installation in Ubuntu 14.04: command not found

Im trying to install AWS eb command line interface in Ubuntu 14.04. I just donwloaded the .zip file. Extracted in a folder. if I go to folder where eb is (/home/roberto/app/AWS-ElasticBeanstalk-CLI-2.6.1/eb/linux/python2.7) and run it, I get: eb: command not found

Same if I do it with python3 path.

like image 584
Rober Avatar asked Mar 20 '23 18:03

Rober


2 Answers

Fixed:

I just ran the command on a terminal:

$ export PATH=$PATH:/opt/aws/eb/linux/python2.7/

and it's working.

like image 167
Rober Avatar answered Mar 22 '23 09:03

Rober


I think all you have to do is, upgrade awsebcli by running: pip install --upgrade awsebcli

like image 39
Ash Singh Avatar answered Mar 22 '23 07:03

Ash Singh