mac命令安装配置yarn

mac安装配置yarn

根据网上大家说的三种方法,我没有安装homebrew安装第一次使用npm安装失败了,又使用命令安装成功

  1. 安装 curl -o- -L https://yarnpkg.com/install.sh | bash
    执行命令后这个地址记着,之后要用
    mac命令安装配置yarn_第1张图片

  2. yarn --version //查看命令,如果报以下提示
    zsh: command not found: yarn

  3. 修改.bash_profile文件,配置path变量,
    touch ~/.bash_profile //新建
    sudo open -e ~/.bash_profile // 打开
    把上边地址保存在bash_profile 文件中

  4. 重新运行下
    source ~/.bash_profile // source表示重新执行、刷新的意思
    yarn --vesion //查找
    mac命令安装配置yarn_第2张图片

你可能感兴趣的:(前端)