纱线错误:没有场景;必须至少有一个

我尝试安装Yarn,当我使用命令时,我得到了:yarn

00h00m00s 0/0: : ERROR: There are no scenarios; must have at least one.

我的是 .为什么它不起作用?yarn --version0.32


答案 1

看起来我试图执行错误的纱线,因为简单地在我的Ubuntu 18.04上运行就给了我来自cmdtest的纱线sudo apt install yarn

所以我通过卸载它解决了:

sudo apt remove yarn

通过按照官方网站的解释安装它,在我的情况下(Ubuntu 18.04),它是以下内容:

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

yarn

答案 2

你拿错了纱线。您正在执行的纱线来自包装。首先卸载cmdtest应该可以解决这个问题:cmdtest

sudo apt remove cmdtest

卸载后,运行以下命令以正确安装yarn:

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