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 | |
| echo "==> Updating system..." | |
| sudo apt update && sudo apt upgrade -y | |
| echo "==> Installing required dependencies..." | |
| sudo apt install -y wget curl libva2 vainfo libvulkan1 mesa-vulkan-drivers | |
| echo "==> Detecting Ubuntu version and architecture..." |