在Ubuntu 14.04中安装AWS Elastic Beanstalk(eb):找不到命令

时间:2014-04-29 11:23:39

标签: python linux ubuntu amazon-web-services ubuntu-14.04

我试图在Ubuntu 14.04中安装AWS eb命令行界面。我刚刚下载了.zip文件。在文件夹中提取。如果我去eb的文件夹(/home/roberto/app/AWS-ElasticBeanstalk-CLI-2.6.1/eb/linux/python2.7)并运行它,我得到:eb:command not found

如果我使用python3路径,那就相同。

4 个答案:

答案 0 :(得分:3)

修正:我刚刚运行:export PATH = $ PATH:/opt/aws/eb/linux/python2.7/ anditśworking。

答案 1 :(得分:1)

我认为您所要做的就是通过运行升级awsebcli:pip install --upgrade awsebcli

答案 2 :(得分:0)

在ubuntu中我们写道: export PATH = $ PATH:/usr/local/lib/python2.7/site-packages /

写完之后它对我有用,因为eb文件夹将出现在所提到的文件夹中。

答案 3 :(得分:0)

如果您使用的是 arch linux:

找到你的 shell 的配置文件脚本,如果是 bash 使用 .bash_profile 运行

$ ls -a ~

$ nano profile_script`   #in my case `$ nano .bash_profile

添加

export PATH=~/.local/bin:$PATH

保存并退出。

现在运行

$source ~/profile_script