This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel | |
| cd /tmp | |
| wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz | |
| tar -xvf Python-3.9.6.tgz | |
| cd Python-3.9.6 | |
| ./configure --enable-optimizations | |
| sudo make altinstall | |
| python3.9 --version | 
