Scoop installation tutorial
Scoop is a Windows command line installation program, similar to apt, yum, pacman, etc. under Linux.
scoop install ***
Similar software includes Chocolatey and WinGet.
Install
Make sure you have PowerShell 5 (or higher, including PowerShell Core) and .NET Framework 4.5 (or higher) installed.
Invoke-Expression (New-Object System.Net.WebClient).DownloadString("https://get.scoop.sh")
# or
iwr -useb get.scoop.sh | iex
Add application bucket
scoop bucket add extras
More buckets: https://rasa.github.io/scoop-directory/by-score.html
use
# Inquire
scoop search sudo
# Install
scoop install sudo
scoop install which
scoop install curl
#...
uninstall
scoop uninstall scoop