AWS CLI $PATH Settings

后端 未结 14 2208
悲&欢浪女
悲&欢浪女 2021-01-30 04:50

I am following the AWS CLI Setup guide. I have managed to successfully install the tool on my Mac OS X terminal with the following output:

Running cmd: /usr/bin/         


        
14条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-30 05:25

    Here are the three steps to install AWS cli on mac OSX (curl or wget) The third step will set you path correctly

    $ curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
    $ unzip awscli-bundle.zip
    $ sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
    

    The other easiest way is to do using homebrew

    brew install awscli
    

    If you want the development version you can do

    brew install awscli --HEAD
    

提交回复
热议问题