标签:new str install www signed 安装 程序 current 一个
scoop 是在windows上提供unix常用工具的一个软件安装工具,类似于yum与apt。你可以通过它安装常用的unix软件,例如 curl,zip,wget等。
安装只需通过powershell运行这句命令即可
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
安装前请确认自己powershell的执行权限设定,可以参照这篇文章
官方文档建议将执行权限设定为 RemoteSigned
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
随后你应该就以用它来安装程序了,例如
scoop install zip
scoop uninstall zip #卸载
使用愉快
标签:new str install www signed 安装 程序 current 一个
原文地址:https://www.cnblogs.com/wswind/p/10919493.html