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
| #!/usr/bin/env bash | |
| set -e | |
| set -o pipefail | |
| echo "Updating system..." | |
| sudo apt update | |
| sudo apt upgrade -y | |
| echo "Installing dependencies..." | |
| sudo apt install -y git curl wget unzip build-essential python3 python3-venv python3-dev \ |
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
| #!/usr/bin/env bash | |
| set -e | |
| set -o pipefail | |
| echo "Updating system..." | |
| sudo apt update | |
| sudo apt upgrade -y | |
| echo "Installing dependencies..." | |
| sudo apt install -y git curl wget unzip build-essential python3 python3-venv python3-dev \ |