14 lines
202 B
Bash
Executable File
14 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
# Installing Python
|
|
|
|
# Update package list
|
|
sudo apt update
|
|
|
|
# Install Python 3 and pip
|
|
sudo apt install -y python3-pip
|
|
|
|
# Verify Python installation
|
|
python3 -V
|
|
|
|
# Finished installing Python
|