本指南为distro-agnostic,因此它对
awscli
在RHEL,CentOS,Ubuntu,Suse等Linux系统上安装。唯一的要求是python
安装即可在您的系统上使用。安装awscli
Linux系统上的Amazon Web Services命令行工具包含多个步骤。首先我们需要安装pip
python打包工具。一旦我们有了pip
已安装并可以使用,我们可以用它来安装awscli
。
PIP的安装
让我们开始吧pip
安装。pip
有一个单一的依赖关系,那就是setuptools
必须先安装:
[root@rhel7 ~]# wget https://pypi.python.org/packages/source/s/setuptools/setuptools-7.0.tar.gz --no-check-certificate
[root@rhel7 ~]# tar xzf setuptools-7.0.tar.gz
[root@rhel7 ~]# cd setuptools-7.0
[root@rhel7 ~]# python setup.py install
接下来我们可以继续pip
安装。在这里,我们假设您的Redhat 7 Linux系统上已经安装了python:
[root@rhel7 ~]# wget https://bootstrap.pypa.io/get-pip.py
[root@rhel7 ~]# python get-pip.py
...
Installing collected packages: pip
Successfully installed pip
安装awscli
现在我们有了pip
准备使用的工具,我们可以简单地使用它来安装awscli Amazon Web Services命令行工具。
[root@rhel7 ~]# pip install awscli
...
Successfully installed awscli botocore bcdoc six colorama docutils rsa jmespath python-dateutil pyasn1
Cleaning up...
[root@rhel7 ~]#
最后,我们可以检查awscli
版:
[root@rhel7 ~]# aws --version
aws-cli/1.6.8 Python/2.7.5 Linux/3.10.0-123.el7.x86_64
配置您的awscli
工具输入以下内容linux命令s:
[root@rhel7 ~]# aws configure