Installation

Dependencies

  • Python3 via one of the following:
    • Python 3.5+
    • Python 3.6+
  • Installation of Amazon CLI tools (awscli, see Installation section)
  • Linux Operating System, one of the following:
    • Redhat Enterprise Linux v7.X
    • Centos 7.X
    • Ubuntu 14.04, (Ubuntu 16.04 preferred)
    • Amazon Linux (2017.09+)

Note:

Any modern Linux distribution should work, but it must have
Python 3.5 + as a minimum requirement.

Linux Distribution

Choose your operating system for correct installation instructions:

Note:

Any modern Linux distribution should work, but it must have
Python 3.5 + as a minimum requirement.

Redhat Enterprise Linux v7.X / Centos 7.X

  • Install Python3 Package Manager
$ sudo yum install python3-pip
$ sudo pip3 install awscli
  • If you have the aws-cli installed and want to upgrade to the latest version you can run:
$ sudo pip3 install --upgrade awscli
  • Installation via pip3 (python3 packages via pip package manager)
$ sudo -H pip3 install stslib
  • Setup and Configuration
$ cd /home/user/<stslib directory>/
# $  ...TBD

Ubuntu v16.04+ / Ubuntu-based Distros

  • Install Python3 Package Manager
$ sudo apt-get install python3-pip
$ sudo pip3 install awscli
  • If you have the aws-cli installed and want to upgrade to the latest version you can run:
$ sudo pip3 install --upgrade awscli
  • Installation via pip3 (python3 packages via pip package manager)
$ sudo -H pip3 install stslib
  • Setup and Configuration
$ cd /home/user/<stslib directory>/
# $  ...TBD

Amazon Linux v2017.09 +

  • Install Python3 Package Manager
$ sudo yum install python36-pip
$ sudo -H pip3 install stslib
  • Setup and Configuration
$ cd /home/user/<stslib directory>/
$ python3 ...TBD

( Table Of Contents )