对比软件包管理器

简介-各个优缺点

  • 软件包管理器: 就像是 360 软件管家,腾讯软件管家之类的, 不过是用 Console 控制


Scoop

软件包管理工具选 Scoop 还是 Chocolatey?看完这篇就知道了

  • 软件少

  • 安装它需要科学上网

  • 官方只收留非 GUI 软件(不带图形界面的),但是有第三方拓展库

  • 安装/卸载干净,可指定性,可拓展第三方软件仓库

  • 不污染环境变量,软件目录清晰

  • 面向程序员.

  • 他把当前版本的目录创建了一个虚拟链接:current,这个伪目录指向当前版本号的目录

    比如这里的current/node.exe实际上指向15.5.1/node.exe

    20210115011742

    这就类似 URL 永久化,使得软件更新后即使目录版本号变更,你的路径引用也不会失效!

    这个功能太赞了!


Chocolatey

  • 软件多
  • 有的软件安装位置不定
  • 面向大众.
  • 国内软件少

WinGet

WinGet 介绍

  • preview 中(2021 年初为止)
  • 只能安装不能卸载
  • 只能装.exe,.msi 等,差不多就是个下载+安装的工具
  • 还非常青涩,不推荐!

Homebrew

mac 上的王座, 没得可争

分割线

安装-使用

Scoop

  • 安装前先设置下 Scoop 的安装路径 (下面操作需要在 pwsh 中进行,没有的话可以手动操作.)

  • 如下,在 user 栏新建SCOOP,值为D:\Game\Scoop

    $env:SCOOP='D:\Game\Scoop'
    [Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')
  • 另外,如果想添加到系统环境变量栏,只需把User修改为Machine

    [Environment]::SetEnvironmentVariable('SCOOP', 'D:\Game\Scoop', 'Machine')
  • 配置好了如下

    20210115232840
  • 安装

    iwr -useb get.scoop.sh | iex
  • 测试

    • 终端输入

      scoop
    • 输出

      ❯ scoop
      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.

Chocolatey

  • 首先设置环境变量 ChocolateyInstall ,值为要安装的位置,如下

    如果不设置的话 Chocolatey 会自动安装进 C 盘

    设置完环境变量后一定要重启,否则不会生效,还是跟没设置一样.

    20210314001245
  • 这个可以用 Scoop 安装,不手动了…


Homebrew

国内源安装脚本, 搜软件的话直接去 官网 搜比较快

Homebrew 安装、使用、升级和卸载


配置文件

  • Scoop

    C:\Users\用户名\.config\scoop\config.json 这个文件里.

  • Chocolatey

    Chocolatey\config\chocolatey.config 这个文件里.

分割线

功能提升

scoop-completion

  • scoop 命令按 tab 自动补全

  • 安装

    可以去官网搜搜哪个库有,加上库然后才能安装.

    scoop install scoop-completion

加速下载

  • 通过 aria2,配置:

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

  • 通过代理:

    scoop config proxy localhost:7890
    choco config set proxy localhost:7890

    移除代理:

    scoop config rm proxy
    choco config unset proxy

alias

scoop alias add ls 'scoop list'
scoop alias add cc 'scoop cache rm *'
scoop alias add rm 'scoop uninstall $args[0]'
scoop alias add c 'scoop cleanup $args[0]'
scoop alias add i 'scoop install $args[0]'
scoop alias add ri 'scoop rm $args[0] && scoop cache rm $args[0] && scoop install $args[0]'
scoop alias add u 'scoop update $args[0]'
scoop alias add ru 'scoop cache rm $args[0] && scoop update $args[0]'
scoop alias add up 'scoop update * && scoop cleanup *'

分割线

报错异常

网络原因

  • 比如我在用 scoop 安装 pwsh 时,会遇到 MD5 不匹配或者与 GitHub 连接异常的情况,安装失败
  • 举例:
    • 我安装gitkraken时,不开 aria2 下载出错,开了的话下载特慢,而且下载时间趋近无穷…
    • 于是我采用方案一,直接用浏览器下载的,带宽跑满,几秒就下载好了.
    • 然后改文件名->复制进 cache->install->successfully.
  • 另外还有一种情况,比如我安装gcc时遇到 scoop 提供的 URL 是 404 状态,这是服务器的问题了,无法解决.

注意,如果安装失败,在 Scoop 内部记录实际是已安装,所以需要卸载再重新安装


  • 解决方案一

    • 安装失败报错时会显示下载地址,去那里手动下载目标文件

      • 或者进入 cache,找到有个叫(要安装的软件名).txt这个文件,比如我要安装gitkraken,就去找到cache/gitkraken.txt

      • 内容如下

        https://release.gitkraken.com/win64/gitkraken-7.4.1-full.nupkg
        referer=https://release.gitkraken.com/win64/
        dir=D:\Game\Scoop\cache
        out=gitkraken#7.4.1#https_release.gitkraken.com_win64_gitkraken-7.4.1-full.nupkg
      • 第一行就是下载地址,最后一行out=后面是目标文件名

    • 进入 cache,按照他的命名,把我们自己下载的重命名后复制进来

    • 再进行 install,安装时 scoop 首先检查 cache 中是否有符合的包,没有才会去下载.


  • 解决方案二

    • 把 aria2 关闭以下就好
    scoop config aria2-enabled false
    • 事后再开启(毕竟它对于某些下载速度提升非常高)
    scoop config aria2-enabled true

环境原因

  • 这是个让人费解的报错,什么都没告诉你还怼了句不明不白的话.

    ERROR Shovel flavour of scoop is required

  • 去看看这个项目:

    https://github.com/Ash258/Scoop-Core

    大概意思: shovel 是 scoop-core 替换增强版,你需要安装这家伙 (虽然用的人并不是很多)

内核更换报错

  • 把内核换成了 Gitee 上的,出现了报错:

    Updating Scoop...
    Your configuration specifies to merge with the ref 'refs/heads/main'
    from the remote, but no such ref was fetched.
    ERROR Update failed.
  • 仔细检查了下是分支问题

    远程上是 master 分支,而本地配置为 main 分支 (配置文件在 ~/.config/scoop/config.yml)

╰─ scoop search 7 ─╯
panic: runtime error: index out of range [1] with length 1

goroutine 20 [running]:
main.matchingManifests(0xc000102060, 0x21, 0xf1b3b8, 0x1, 0xc000052000, 0x10, 0x10)
/home/runner/work/scoop-search/scoop-search/main.go:133 +0x106b
main.main.func1(0xc000092140, 0x15, 0xf1b3b8, 0x1, 0x0, 0xc000088270, 0xc000094150, 0xe92f00, 0xc0000d6070)
/home/runner/work/scoop-search/scoop-search/main.go:70 +0x185
created by main.main
/home/runner/work/scoop-search/scoop-search/main.go:63 +0x253

排查了一遍,出现这种问题一般是因为软件库有问题, 而不是 scoop/scoop-search 的问题


brew-install-error

Error: python@3.10: the bottle needs the Apple Command Line Tools to be installed.

解决办法: 安装 devtools [1]

xcode-select --install

镜像原问题

Error: No such file or directory @ rb_sysopen - /Users/weidows/Library/Caches/Homebrew/downloads/62f0eafeb7223239272cde77c134d3fa2c0cdc799e2b6d5b1c719d6bf35c4871--libpng-1.6.37.monterey.bottle.tar.gz

暂时换为默认源, 装完再换回去

echo ${HOMEBREW_BOTTLE_DOMAIN}
export HOMEBREW_BOTTLE_DOMAIN=''
export HOMEBREW_BOTTLE_DOMAIN='https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/'

scoop-update-failed

scoop 软件安装/更新失败导致的错误 (无法正常使用/更新), 一般解决办法是卸载重装

其实可以把失败的版本和 current 删掉 (如图中后两个), 然后 scoop reset/update


下载经常报错

Updating 'etcher' (1.18.8 -> 1.18.11)
Downloading new version
Starting download with aria2 ...
Download: 08/17 02:22:15 [ERROR] CUID#8 - Download aborted. URI=https://github.com/balena-io/etchDownload: Exception: [SocketCore.cc:1018] errorCode=1 SSL/TLS handshake failure: unable to get loDownload: Download Results:
Download: gid |stat|avg speed |path/URI
Download: ======+====+===========+=======================================================
Download: 09ad8b|ERR | 0B/s|D:/Scoop/cache/etcher#1.18.11#https_github.com_balena-io_etcher_releases_download_v1.18.11_balenaEtcher-Setup-1.18.11.exe_dl.7z
Download: Status Legend:
Download: (ERR):error occurred.
Download: aria2 will resume download if the transfer is restarted.
Download: If there are any errors, then see the log file. See '-l' option in help/man page for details.

ERROR Download failed! (Error 1) An unknown error occurred
ERROR https://github.com/balena-io/etcher/releases/download/v1.18.11/balenaEtcher-Setup-1.18.11.exe#/dl.7z
referer=https://github.com/balena-io/etcher/releases/download/v1.18.11/balenaEtcher-Setup-1.18.11.exe#/
dir=D:\Scoop\cache
out=etcher#1.18.11#https_github.com_balena-io_etcher_releases_download_v1.18.11_balenaEtcher-Setup-1.18.11.exe_dl.7z

ERROR & 'D:\Scoop\apps\aria2\current\aria2c.exe' --input-file='D:\Scoop\cache\etcher.txt' --user-agent='Scoop/1.0 (+http://scoop.sh/) PowerShell/7.3 (Windows NT 10.0; Win64; x64; Core)' --allow-overwrite=true --auto-file-renaming=false --retry-wait=4 --split=16 --max-connection-per-server=16 --min-split-size=4M --console-log-level=warn --enable-color=false --no-conf=true --follow-metalink=true --metalink-preferred-protocol=https --min-tls-version=TLSv1.2 --stop-with-process=43596 --continue --summary-interval=0 --auto-save-interval=1 --all-proxy='localhost:7890'

Please try again or create a new issue by using the following link and paste your console output:
https://github.com/kkzzhizhou/scoop-apps/issues/new?title=etcher%401.18.11%3a+download+via+aria2+failed
{
"proxy": "localhost:7890",
"last_update": "2023-08-17T02:22:12.7799057+08:00",
"aria2-enabled": true,
"aria2-warning-enabled": false,
"aria2-retry-wait": "3",
"aria2-split": "8",
"aria2-max-connection-per-server": "16",
"aria2-min-split-size": "4M",
"aria2-options": [
# 试试加上这个
"--allow-overwrite=true",
"--auto-file-renaming=false",
],
"use_external_7zip": true,
"use_lessmsi": true,
"scoop_repo": "https://github.com/ScoopInstaller/Scoop",
"scoop_branch": "master",
"debug": true
}

分割线

推荐

备份

https://github.com/Weidows-projects/Programming-Configuration/tree/master/lists/scoop


文章

Scoop 进阶教程
Windows 下 Scoop 安装、配置与使用
scoop——强大的 Windows 命令行包管理工具

分割线

借物表

[1]: https://www.crifan.org/error_python_3_9_bottle_needs_apple_command_line_tools_be_installed/