Skip to content

Instantly share code, notes, and snippets.

@andrew-rietz
Last active April 15, 2020 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrew-rietz/66e4ebcf96f85b6618b078ebe00104b1 to your computer and use it in GitHub Desktop.
Save andrew-rietz/66e4ebcf96f85b6618b078ebe00104b1 to your computer and use it in GitHub Desktop.

Overview

Scoop is a command-line installer for Windows. Scoop installs programs from the command line with a minimal amount of friction.

Installation

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

Basic Commands

Install a program: scoop install <<program>>
Check for outdated programs: scoop status
Updated outdated programs: scoop update
Uninstall a program: scoop uninstall program
Search for a program: scoop search <<some program name>>

'Buckets'

In Scoop, buckets are collections of apps. Or, to be more specific, a bucket is a Git repository containing JSON app manifests which describe how to install an app.

Scoop has a main bucket which is bundled with Scoop and this is always available as the primary source for installing apps.

By default, when you run scoop install , it looks in the main bucket, but it's possible to install from other buckets too.

Further details

  1. https://github.com/lukesampson/scoop
  2. https://spin.atomicobject.com/2017/12/20/windows-command-line-installer/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment