参考:https://blog.csdn.net/judyya/article/details/130147590 (报错)
https://zhuanlan.zhihu.com/p/678611327(知乎安装)
https://scoop.sh/(查找软件)
启动:搜索powerShell然后右击管理员执行
报错:如果还是报Running the installer as administrator is disabled by default, see https://github.com/ScoopInstaller/Install#for-admin for details.
解决:del .\scoop -Force
// 安装
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
接着就可以安装软件了
我们可以尝试安装个git看看
scoop install git
sudo scoop install -g 软件名 全局安装
scoop uninstall 软件名
然后再装个应用商店
scoop bucket add extras 加商店
scoop bucket add versions加多版本商店
scoop bucket list 查看已有的应用商店
scoop search 软件名(也可以去官网找你要的包https://scoop.sh/#/apps)
scoop list
scoop info 软件名
scoop cache rm * 清除所有安装包缓存
标签:windows,bucket,scoop,mac,sh,https,软件,安装 From: https://www.cnblogs.com/warrenwt/p/18075869