Featured image of post Scoop自定义安装与使用

Scoop自定义安装与使用

win10安装scoop.

在D盘下执行 irm get.scoop.sh -outfile 'install.ps1'

如果提示无法解析 raw.githubusercontent.com 那么就在host文件中添加 185.199.108.133 raw.githubusercontent.com 然后保存为ASCI编码

在D盘创建D:\Scoop\UserScoopApps 和 D:\Scoop\GlobalScoopApps这两个目录 接下来执行

1
.\install.ps1 -ScoopDir 'D:\Scoop\UserScoopApps' -ScoopGlobalDir 'D:\Scoop\GlobalScoopApps' -NoProxy

这里最好global和非global的目录不是同一个,因为同一个的话会导致每次下一个app都会多下一个全局的

安装完之后要重启电脑或者任务管理器中重启资源管理器之后才能在powershell和cmd中都生效,不重启不只能在powershell中使用

常用bucket

Name Source


Ash258 https://github.com/Ash258/Scoop-Ash258.git
cvp https://github.com/SayCV/scoop-cvp.git
dorado https://github.com/chawyehsu/dorado
echo https://github.com/echoiron/echo-scoop
extras https://github.com/ScoopInstaller/Extras
java https://github.com/ScoopInstaller/Java
Main https://github.com/ScoopInstaller/Main.git
nerd-fonts https://github.com/matthewjberger/scoop-nerd-fonts nirsoft https://github.com/kodybrown/scoop-nirsoft
nonportable https://github.com/ScoopInstaller/Nonportable
Scoop-Apps https://github.com/ACooper81/scoop-apps
scoop-bear https://github.com/AStupidBear/scoop-bear
scoopcn https://github.com/scoopcn/scoopcn.git
versions https://github.com/ScoopInstaller/Versions

添加bucket:

1
2
3
scoop bucket add extras   https://github.com/ScoopInstaller/Extras
scoop bucket add Scoop-Apps  https://github.com/ACooper81/scoop-apps   
scoop bucket add versions    https://github.com/ScoopInstaller/Versions    

常用命令

使用scoop的shim来添加环境变量path

scoop shim add $习惯命令名 $执行命令的文件(格式为:路径+文件名。如果不确定是哪一个文件起作用就去chatgpt问一问)

切换软件版本

scoop reset <java>[@<version>]

删除旧版本

scoop cleanup <app>

powershell命令

以其他命令的结果作为另一命令的一部分

在 PowerShell 中,可以使用 $() 语法将命令的返回值作为参数传递给其他命令。