美文网首页
windows程序开发工具

windows程序开发工具

作者: chenyk2016 | 来源:发表于2018-07-28 11:03 被阅读0次

1. chocolatey

官网

https://chocolatey.org/install#install-with-cmdexe

安装

cmd.exe执行

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

powerShell命令行执行(管理员)

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

ui管理 chocolateyguic

安装ui管理工具

choco install chocolateygui

升级

choco upgrade chocolateygui

WEB常用软件安装

choco install python2
choco install nodejs.install

2. yarn依赖管理工具

https://yarn.bootcss.com/
安装:

choco install yarn

相关文章

网友评论

      本文标题:windows程序开发工具

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