MAC软件安装

yarn

基于终端安装

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

Yarn was installed, but doesn't seem to be working :(.提示则进入第2步,继续配置环境变量,否则⬇️
yarn --version校验是否安装成功,如果command not found: yarn,则继续配置环境变量

2. touch ~/.bash_profile   //touch是没有就创建;.bash_profile这是系统临时的环境变量 
   
3. sudo open -e ~/.bash_profile //sudo是最大权限,输入密码为锁屏密码

第三部后会弹出 .bash_profile文件框,需要写入path,具体命令根据提示输入
MAC软件安装_第1张图片

4. source ~/.bash_profile

yarn --version check~

你可能感兴趣的:(macos,yarn)