Hello Friends, Today, we are going to install Python 3.6 on RHEL Distribution (RHEL/CentOS) In AWS EC2 default Python comes with instance are 2.7.5. So here we will install Python version3.6.0. Step 1. There are some Pre-Requisites for this, here we will resolve that one by one. Install the development, zlib-devel,openssl-devel sudo yum -y groupinstall development sudo yum -y install zlib-devel sudo yum -y install openssl-devel Install the PIP curl -O https://bootstrap.pypa.io/get-pip.py Use python to install pip python get-pip.py Step 2. After installed all the Pre-Requisite, here we need to install OpenSSL also to avoid the errors. Download the package OpenSSL_1_0_2l, extract, configure and finally clean unnecessary files and folder wget https://github.com/openssl/openssl/archive/OpenSSL_1_0_2l.tar.gz tar -zxvf OpenSSL_1_0_2l.tar.gz cd openssl-OpenSSL_1_0_2l/ ./config shared make sudo make install export LD_LIBRARY_PATH=/usr/local/ssl/lib/ cd .. rm OpenSSL_1_0_2...