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
这篇关于纱线错误:没有场景;必须至少有一个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:纱线错误:没有场景;必须至少有一个


基础教程推荐
- 动态更新多个选择框 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01