在更新 Yarn 的版本是时候从官网下载最新的版本时,老是容易下载不了,在看了官方提供在 windows 下用命令行进行下载,所以尝试了一下,发现很方便好用,现在写下来方便自己后面有需要查阅。
安装环境 win10 powershell
使用 Chocolatey 下载安装 yarn
可以在 powershell 直接执行代码
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
可以在执行完上面代码后输入 choco -? 进行检查是否安装完成
安装完成执行下载最新版本 Yarn
choco install yarn