在 CentOS、Fedora 和 RHEL 作業系統中
你可以通過我們的 RPM 包倉庫來安裝 Yarn。
sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo
如果你尚未安裝 Node.js,你應該同時配置 NodeSource 倉庫:
curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
然後執行:
sudo yum install yarn
配置映象:
yarn config get registry (檢視當前源,適用Windows)
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
複製程式碼