How to upgrade AWS CLI to the latest version?

前端 未结 12 2337
走了就别回头了
走了就别回头了 2020-12-07 14:41

I recently noticed that I am running an old version of AWS CLI that is lacking some functionality I need:

$aws --version
aws-cli/1.2.9 Python/3.4.3 Linux/3.1         


        
12条回答
  •  既然无缘
    2020-12-07 14:56

    pip install awscli --upgrade --user
    

    The --upgrade option tells pip to upgrade any requirements that are already installed. The --user option tells pip to install the program to a subdirectory of your user directory to avoid modifying libraries used by your operating system.

提交回复
热议问题