Installing Python on Linux
sudo apt-get install python
If you’re writing a bash script to install programs for a fresh server, it’s a good idea to add the -y flag to force the install without being prompt to confirm
sudo apt-get install python -y
sudo apt-get install python
If you’re writing a bash script to install programs for a fresh server, it’s a good idea to add the -y flag to force the install without being prompt to confirm
sudo apt-get install python -y