[PYTHON] Procedure memo to put AWS command line interface in CentOS6

First, set up the python environment with yum. It is assumed that the epel repository has already been installed.

command


yum -y install python python-devel --enablerepo=epel

Put the setuptools officially provided by python in yum. This will install the python easy_install command.

command


yum -y install python-setuptools

Install the pip command using the easy_install command.

command


easy_install pip

After entering the pip command, install awscli with the pip command as shown on the AWS official page.

http://aws.amazon.com/jp/cli/

command


pip install awscli

This completes the installation. Environment variables and other settings need to be set separately.

Have a look at this. http://qiita.com/mychaelstyle/items/e09309104dd6daa7c01b

Recommended Posts

Procedure memo to put AWS command line interface in CentOS6
Command line tool to put .gitkeep in an empty directory
How to receive command line arguments in Python
Put matplotlib in Centos7.
Steps to use the AWS command line interface (Python / awscli) on Mac OS X
How to specify command line arguments when debugging in PyCharm
How to get a string from a command line argument in python
In the python command python points to python3.8
Try to put data in MongoDB
Linux command (basic in basic) personal memo
A story about a beginner trying hard to set up CentOS 8 (procedure memo)
[Itertools.permutations] How to put permutations in Python
PUT gzip directly to S3 in Python
To win in Forex Part 4 ~ LINE Notification
(Command conversion) MFA authentication in AWS CLI
Decompose command arguments in one line in Python
[V11 ~] A memorandum to put in Misskey
Shell command to visualize line feed code
Steps to install CentOS 8.1 in Virtual Box
Introduction of SoftLayer Command Line Interface environment
Study memo 11_ Linux command memo found in the operation procedure manual of the infrastructure site
Build a command line app in Python to understand setup.py, argparse, GitHub Actions