Features | Installation | Documentation
Scoop is a command-line installer for Windows.
Scoop installs apps from the command line with a minimal amount of friction. It:
PATH
environment variable. Normally, this variable gets cluttered as different apps are installed on the device.Scoop is quite script-friendly. Your environment can become the way you like by using repeatable setups. For example:
scoop install sudo
sudo scoop install 7zip git openssh --global
scoop install aria2 curl grep sed less touch
scoop install python ruby go perl
If you have built software that you would like others to use, Scoop is an alternative to building an installer (like MSI or InnoSetup). You just need to compress your app to a .zip
file and provide a JSON manifest that describes how to install it.
Run the following commands from a regular (non-admin) PowerShell terminal to install Scoop:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
Note: The first command makes your device allow running the installation and management scripts. This is necessary because Windows 10 client devices restrict execution of any PowerShell scripts by default.
It will install Scoop to its default location:
C:Users
You can find the complete documentation about the installer, including advanced installation configurations, in ScoopInstaller/Install. Please create new issues there if you have questions about the installation.
aria2
Scoop can utilize aria2
to use multi-connection downloads. Simply install aria2
through Scoop and it will be used for all downloads afterward.
scoop install aria2
By default, scoop
displays a warning when running scoop install
or scoop update
while aria2
is enabled. This warning can be suppressed by running scoop config aria2-warning-enabled false
.
You can tweak the following aria2
settings with the scoop config
command:
The apps that are most likely to get installed fine with Scoop are those referred to as "portable" apps. These apps are compressed files which can run standalone after being extracted. This type of apps does not produce side effects like changing the Windows Registry or placing files outside the app directory.
Scoop also supports installer files and their uninstallation methods. Likewise, it can handle single-file apps and PowerShell scripts. These do not even need to be compressed. See the runat package for an example: it is simply a GitHub gist.
If you would like to improve Scoop by adding features or fixing bugs, please read our Contributing Guide.
If you find Scoop useful and would like to support the ongoing development and maintenance of this project, you can donate here:
The following buckets are known to Scoop:
The main
bucket is installed by default. You can make use of more buckets by typing:
scoop bucket add
For example, to add the extras
bucket, type:
scoop bucket add extras
You would be able to install apps from the extras
bucket now.
Many other application buckets hosted on GitHub can be found on ScoopSearch or via other search engines.