Install Required Linux Packages
CTE COS S3 requires the following prerequisite packages:
-
boost-regex
-
boost-system
-
boost-thread
-
lib-curl
-
libtool-ltdl
-
libxml2
-
epel-release
. -
cryptopp
// This package must be installed afterepel-release
. -
log4cpp
// This package must be installed afterepel-release
.
For example:
sudo yum install boost-regex boost-system boost-thread libcurl libtool-ltdl libxml2 epel-release
sudo yum install cryptopp log4cpp
CTE COS S3 supports both Python2 and Python3. If both versions of Python are available, CTE COS S3 will use Python3. For either Python package, you also need to install the Python modules "boto3
" and "future
" after you install the main python package.
-
Example for Python2:
sudo yum install python-pip sudo pip install boto3 future
-
Example for Python3:
sudo yum install python3 python3-pip sudo pip3 install boto3 future