yarnのインストール - UbuntuYarnリポジトリのGPGキーの追加とソースURLの追加curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - apt-key list echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list Yarnのインストールsudo apt update sudo apt install --no-install-recommends yarn dpkg -L yarn which yarn yarn --version
参考https://linuxize.com/post/how-to-install-yarn-on-ubuntu-20-04/ |
|