Scoop是一个Windows的命令行安装程序,类似于Linux下的apt、yum、pacman等。

scoop install ***

相似软件还有Chocolatey、WinGet。

安装

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

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

# 或者
iwr -useb get.scoop.sh | iex

添加应用bucket

scoop bucket add extras

更多bucket:https://rasa.github.io/scoop-directory/by-score.html

使用

# 查询
scoop search sudo

opi3gH.jpg

# 安装
scoop install sudo
scoop install which
scoop install curl
# ...

opi0PS.jpg

卸载

scoop uninstall scoop
文章目录