scoop常用命令

时间:2024-03-04 11:29:03

环境要求:
Windows7及以上
PowerShell版本不低于PowerShell 3
正常、快速的访问GitHub
Windows用户名为英文(Windows用户环境变量中路径值不支持中文字符)

在可以运行 PowerShell 脚本之前,你需要将本地的 ExecutionPolicy 设置为 RemoteSigned (可以说是允许除了 Undefined 和 Restricted 之外的任何内容)。如果你选择了 AllSigned 而非 RemoteSigned,那么你的本地脚本还需要数字签名后才能执行。如果设置为 RemoteSigned, 那么只有“ZoneIdentifier”设置为 Internet,即从 Web 上下载的脚本才需要签名,其它则不需要。 如果你是管理员,想要为本机上的所有用户设置它,请使用“-Scope LocalMachine”。 如果你是没有管理权限的普通用户,可使用“-Scope CurrentUser”来只为自己设置它。

### 保证允许本地脚本的执行

```shell
set-executionpolicy remotesigned -scope currentuser
```

### 安装scoop

```shell
iex (new-object net.webclient).downloadstring(\'https://get.scoop.sh\')
```

如果下载scoop的过程中断,那么必须先删除(C:\Users<user>\scoop)文件夹,再执行以上命令安装。

使用scoop安装软件如果安装过程中失败,再次安装会提示已经安装,这个时候需要先执行卸载再安装


### 利用aria2加速下载
在使用scoop安装aria2后,scoop会自动调用aria2进行多线程下载以加速下载:

```shell
scoop install aria2
```

下载完成后,记得打开16线程(aria2编译版本默认最高线程为16,需要更高的请自行编译)

```shell
scoop config aria2-max-connection-per-server 16
scoop config aria2-split 16
scoop config aria2-min-split-size 1M
```

如果使用代理,有时需要通过如下命令关闭 aria2

```shell
scoop config aria2-enabled false
```

通过Scoop切换软件版本

```shell
scoop reset [ProgramVersion]
```