Search code examples
pythonlinuxubuntuamazon-web-servicesubuntu-14.04

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.


Solution

  • Fixed:

    I just ran the command on a terminal:

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

    and it's working.