Corrigir erro ao rodar o Yarn no terminal linux

O erro é esse:

ERROR: There are no scenarios; must have at least one

Para corrigir:

sudo apt remove cmdtest
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn

Deixe uma resposta