AWS CLI $PATH Settings

后端 未结 14 2235
悲&欢浪女
悲&欢浪女 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:30

    I personally had the same issue with aws CodeBuild - I couldn't use the aws cli. I solved it by installing aws globally on my docker image (instead of installing it locally to a user).

    RUN pip install awscli --upgrade 
    
    (instead of RUN pip install awscli --upgrade --user)
    

    It worked for me, if that can help anyone !

提交回复
热议问题