首先不推荐使用Ubuntu默认的yarn安装,版本太低。
- 首先在Ubuntu的源中添加yarn的源地址
1
| curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
1
| echo "deb https://dl.yarnpkg.com/debian/ rc main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
记得分两次输入
- 进行安装
1
| sudo apt-get update && sudo apt-get install yarn
|
Ubuntu 17.04 默认安装有cmdtest,会影响正常的Yarn安装,请在之前先卸载
- 查看版本
Windows 安装yarn
全局安装/升级
1
| npm install yarn@latest -g
|
指定版本升级
查看历史版本
1
| npm view yarn versions --json
|
windows安装的时候经常提示
1
| There appears to be trouble with your network connection. Retrying...
|
进行修改源
1 2
| $ yarn config set registry https://registry.npm.taobao.org -g $ yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g
|
就可以正常安装相应的包了