astronaut

How to Install Scoop on Windows: A Quick Guide

How to Install Scoop on Windows: A Quick Guide

January 27, 2025 2 min read
Install Scoop Windows

Scoop is a lightweight command-line installer for Windows, making it easy to manage software and developer tools. Here’s how to quickly set it up on your system.


Step 1: Enable Script Execution

Set Execution Policy Command Before installing Scoop, you need to enable script execution in PowerShell. Run the following command:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser  

This allows PowerShell to execute the installation script.


Step 2: Install Scoop

Install Scoop Command To install Scoop, use this command:

Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression  

Once the installation completes, Scoop is ready to use!


Git is required to add and manage additional Scoop buckets (repositories). Install it with:

scoop install git  

Step 4: Add Scoop Buckets

Buckets are collections of software packages. Add the extras bucket for more apps:

scoop bucket add extras  

Test Scoop Installation with Winfetch

To test that Scoop is working correctly, install and run Winfetch, a tool that displays system information in the terminal:

  1. Install Winfetch using Scoop:
scoop install winfetch  

scoop install winfetch

  1. Run Winfetch to display your system details:
winfetch  

If everything is set up correctly, you’ll see a colorful and detailed summary of your Windows system in the terminal.

winfetch execution

Learn More: For a complete guide on customizing and using Winfetch, check out our tutorial:
Winfetch Tutorial


Searching for Packages

Scoop makes it easy to find and install software:

  1. GUI Search: Visit scoop.sh for a graphical interface to browse packages.
  2. Command-line Search: Use the following command to search directly in the terminal:
scoop search <package-name>  

With Scoop, you now have a powerful tool to simplify software management on Windows. Explore more features, add your favorite tools, and enjoy a streamlined software installation process!

Share this content: