Yarn ERROR: There are no scenarios; must have at least one(纱线错误:没有场景;必须至少有一个)
问题描述
我尝试安装 Yarn 并且当我使用 yarn 命令时我得到了:
I tried to install Yarn and when I used the yarn command I got:
00h00m00s 0/0: : ERROR: There are no scenarios; must have at least one.
我的 yarn --version 是 0.32.为什么它不起作用?
my yarn --version is 0.32. Why doesn't it work?
推荐答案
看起来我试图执行错误的纱线,因为在我的 Ubuntu 18.04 上运行 sudo apt install yarn 给了我来自 cmdtest 的纱线.
It looks like that I was trying to execute the wrong yarn, because simply running sudo apt install yarn on my Ubuntu 18.04 gave me yarn from cmdtest.
所以我通过卸载解决了:
So I solved by uninstalling it:
sudo apt remove yarn
并按照官方网站的说明进行安装,在我的情况下(Ubuntu 18.04) 如下:
And by installing it as the official website explains, which in my case (Ubuntu 18.04) it was the following:
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
这篇关于纱线错误:没有场景;必须至少有一个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:纱线错误:没有场景;必须至少有一个
基础教程推荐
- 在 contenteditable 中精确拖放 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
