--Téléchargez le script d'installation à partir du site Web de pip
#Bouge toi
cd /var/tmp
#Télécharger le script d'installation
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
sudo python get-pip.py
--Installez awscli en utilisant pip
sudo pip install awscli
#Confirmation de version
aws --version
aws-cli/1.18.128 Python/2.7.5 Linux/3.10.0-1127.19.1.el7.x86_64 botocore/1.17.51
aws configure
==========
AWS Access Key ID [None]: XXXXXXXXXXXXX
AWS Secret Access Key [None] : XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Default region name [None] : xxxxxxxx
Default output format [None]: json
==========
AWS Access Key ID :clé d'accès
AWS Secret Access Key :Clef secrète
Default region name :Région par défaut(référence: https://docs.aws.amazon.com/ja_jp/general/latest/gr/rande.html)
Default output format :Format par défaut
Recommended Posts