美文网首页
MacOS 安装yarn几种方式-zhuan

MacOS 安装yarn几种方式-zhuan

作者: Leo_5cdb | 来源:发表于2020-05-12 03:08 被阅读0次

    pfsing  

    2019.11.06 阅读 1174

    今日荐书:【点击领优惠券】人类简史(绘本版):给孩子的世界历史超图解

    macOS有几种安装yarn的方式,如下:

    使用homebrew安装yarn

    brew install yarn

    使用homebrew安装,如果node.js没有安装,那么它会自动安装node.js

    使用MacPorts安装yarn

    sudo port install yarn

    MacPorts也会自动按node.js

    使用脚本安装yarn

    macOS属于Unix系统的分支,在Unix环境下,使用脚本安装是很方便。

    curl -o- -L https://yarnpkg.com/install.sh | bash

    安装指定版本的yarn

    curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.19.1

    版权声明:著作权归作者所有。

    macos yarn

    相关文章

      网友评论

          本文标题:MacOS 安装yarn几种方式-zhuan

          本文链接:https://www.haomeiwen.com/subject/mfzmnhtx.html