多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
The Chocolatey package manager provides an easy way to install the required build tools. Chocolatey can be installed by following these[instructions](https://chocolatey.org/). 使用windows自带window power(版本在7.0以上)安装: ~~~ Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) ~~~ 装完后,可以安装各种工具: ~~~ C:\Windows\system32> choco install git C:\Windows\system32> choco install golang C:\Windows\system32> choco install mingw ~~~