安装
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex
测试安装是否成功
scoop
查找软件
scoop search git
安装软件
scoop install git
关于 aria2的用法
配置aira2加速
scoop install aria2
scoop config aria2-enabled true
scoop config aria2-retry-wait 2
scoop config aria2-max-connection-per-server 16
scoop config aria2-split 16
scoop config aria2-min-split-size 1M
批量下载文本中所有URL
aria2c -i uris.txt
关闭aria2
scoop config aria2-enabled false
重置scoop环境变量和快捷方式解决冲突
scoop reset
导出安装的软件列表
scoop.cmd export > App_list.txt
更新所有的安装软件
scoop update * && scoop cleanup *
添加仓库
scoop bucket add extras
安装第三方bucket
scoop bucket add scoopbucket https://github.com/yuanying1199/scoopbucket
scoop install scoopbucket/cajviewerlite
更换 scoop 源
scoop config SCOOP_REPO https://gitee.com/squallliu/scoop
scoop update
Scoop 软件安装位置
Scoop 在你的用户根目录(一般是 C:Users用户名)下创建了一个名为 scoop 的文件夹,并默认将软件下载安装到这个文件夹下的apps目录,如下图
scoop安装目录
scoop 是通过 shim 来软链接一些应用。
scoop下MySQL的安装