Monday, October 11, 2021

Install Python 3.8 on Amaxon Linux 2

 

Install Python 3.8 on Amazon Linux 2

This thread  focuses on installation Python 3.8 on Amazon Linux 2.

Install from amazon-linux-extras repository

  • To install 3.8 on Amazon Linux 2, you need to have amazon-linux-extras repository installed. 
    • sudo yum install -y amazon-linux-extras 





  • Confirm that Python 3.8 packages available on the repository.  
    • amazon-linux-extras | grep -i python
       
You should see the following:

44  python3.8                available    [ =stable ]
  •  Enable the repository before using it.
  • sudo amazon-linux-extras enable python3.8 


  • Install Python 
    • sudo yum install python3.8


Use SSH Keys to clone GIT Repository using SSH

  1. Generate a New SSH Key Pair bash ssh-keygen -t rsa -b 4096 -C "HSingh@MindTelligent.com" -t rsa specifies the type of key (...