#安装(power shell 管理员)
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
#卸载
scoop uninstall scoop
#安装必备软件(必装后面方便折腾)
scoop install aria2
scoop install 7zip
scoop intall git
# 对aria2进行设置
scoop config aria2-split 3
scoop config aria2-max-connection-per-server 3
scoop config aria2-min-split-size 1M
# 添加国内镜像
scoop config SCOOP_REPO https://gitee.com/scoop-bucket/scoop
# 切回官方镜像
# scoop config SCOOP_REPO https://github.com/ScoopInstaller/Scoop
# 查看有哪些repo
scoop bucket known
# 添加bucklet
scoop bucket rm main
# scoop bucket add main
scoop bucket add main https://mirror.nju.edu.cn/git/scoop-main.git
scoop bucket add extras https://mirror.nju.edu.cn/git/scoop-extras.git
scoop bucket add dorado https://gitee.com/scoop-bucket/dorado.git
# 更新-每次添加完仓库记得更新
scoop update