Scoop-非常好用的Windows环境下软件安装管理工具

开始

官方网站

快速安装

确保已安装PowerShell 5(或更高版本,包括PowerShell Core)和.NET Framework 4.5(或更高版本)。然后运行:

1
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')

注意:如果出现错误,则可能需要更改执行策略(即启用Powershell),方法如下:

1
Set-ExecutionPolicy RemoteSigned -scope CurrentUser

使用

Powershell中输入scoop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Usage: scoop <command> [<args>]

Some useful commands are:

alias Manage scoop aliases
bucket Manage Scoop buckets
cache Show or clear the download cache
checkup Check for potential problems
cleanup Cleanup apps by removing old versions
config Get or set configuration values
create Create a custom app manifest
depends List dependencies for an app
export Exports (an importable) list of installed apps
help Show help for a command
hold Hold an app to disable updates
home Opens the app homepage
info Display information about an app
install Install apps
list List installed apps
prefix Returns the path to the specified app
reset Reset an app to resolve conflicts
search Search available apps
status Show status and check for new app versions
unhold Unhold an app to enable updates
uninstall Uninstall an app
update Update apps, or Scoop itself
virustotal Look for app's hash on virustotal.com
which Locate a shim/executable (similar to 'which' on Linux)


Type 'scoop help <command>' to get help for a specific command.