“安装yarn”的版本间的差异
跳到导航
跳到搜索
(创建页面,内容为“=debian10= <pre> #要先安装 gpg curl etc curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main…”) |
|||
(未显示同一用户的2个中间版本) | |||
第1行: | 第1行: | ||
+ | 大部分直接看官方文档就行了 | ||
+ | |||
=debian10= | =debian10= | ||
<pre> | <pre> | ||
第13行: | 第15行: | ||
</pre> | </pre> | ||
+ | npm install --global yarn@rc | ||
[https://yarn.bootcss.com/docs/install/#debian-stable yarn安装] | [https://yarn.bootcss.com/docs/install/#debian-stable yarn安装] | ||
+ | |||
+ | [[category:node.js]] [[category:ops]] |
2020年9月1日 (二) 09:41的最新版本
大部分直接看官方文档就行了
debian10
#要先安装 gpg curl etc curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list apt update && apt install yarn #这样默认的node 版本 s:~# node -v v10.15.2
npm install --global yarn@rc