Env :
WSL on Windows 11 PRO
Ubuntu distribution
Problem :
When I execute setup.sh with sudo rights, I have this output :
./setup.sh: line 11: gum: command not found
Possible Resolution :
Seems like gum is not installed on Ubuntu, here is a way to install it :
sudo mkdir -p /etc/apt/keyrings curl -fsSL https://repo.charm.sh/apt/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/charm.gpg echo "deb [signed-by=/etc/apt/keyrings/charm.gpg] https://repo.charm.sh/apt/ * *" | sudo tee /etc/apt/sources.list.d/charm.list sudo apt update && sudo apt install gum
Env :
WSL on Windows 11 PRO
Ubuntu distribution
Problem :
When I execute setup.sh with sudo rights, I have this output :
./setup.sh: line 11: gum: command not foundPossible Resolution :
Seems like gum is not installed on Ubuntu, here is a way to install it :
sudo mkdir -p /etc/apt/keyrings curl -fsSL https://repo.charm.sh/apt/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/charm.gpg echo "deb [signed-by=/etc/apt/keyrings/charm.gpg] https://repo.charm.sh/apt/ * *" | sudo tee /etc/apt/sources.list.d/charm.list sudo apt update && sudo apt install gum