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

前端 未结 7 802
死守一世寂寞
死守一世寂寞 2021-02-01 01:58

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.
相关标签:
7条回答
  • 2021-02-01 02:27

    Try this step by step. This worked for me.

    sudo apt remove yarn
    sudo apt install curl
    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
    
    0 讨论(0)
提交回复
热议问题