📌  相关文章
📜  yarn ERROR:没有场景;必须至少有一个. - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:58.936000             🧑  作者: Mango

代码示例3
# Ubuntu 20.04

sudo apt remove yarn
# And by installing it as the official website explains
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