image from https://scoop.sh/
What is Scoop.sh ?
Scoop.sh is a command-line installer for Windows. It allows users to easily install and manage command-line tools and applications, similar to the way that package managers work on Linux and macOS. Scoop can be used to install a wide variety of software, including programming languages, text editors, and development tools. It is designed to make it easy to install and update software on Windows, and is particularly useful for developers who work on Windows and want to use the same tools as their colleagues who use Linux or macOS.
How can I use it?
Using Scoop is relatively straightforward. First, you will need to open a Command Prompt or PowerShell window on your Windows computer. Then, you can use the following command to install Scoop:
> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
> irm get.scoop.sh | iex
- This command will download and run the Scoop installer, which will add the scoop command to your system.
- But before that you have to add Buckets in which the apps will installed from:
>
scoop install 7zip git
- Adding Buckets To Scoop :
>
scoop bucket add extras versions
- Once Scoop is installed, you can use the following command to install an application:
>
scoop install <application-name>
- For example, to install the Git version control system, you would use the command:
>
scoop install git
- You can also use scoop to install multiple apps at once by separating them with a space, for example:>
scoop install git nodejs curl wget python go perl php
- You can also use scoop to update all the apps installed by scoop:
>
scoop update *
- You can also use scoop to update specific app installed by scoop:
>
scoop update git
- You can also use scoop to uninstall a specific app installed by scoop:
>
scoop uninstall git
- You can also use scoop to list all the apps installed by scoop:> scoop list
And many other commands, you can find more information about them on the official scoop documentation website: https://scoop.sh/docs/