scoop packages code example

Example 1: install scoop

to install scoop:

iwr -useb get.scoop.sh | iex

if you get an execution policy error run: 

iwr -useb get.scoop.sh | iex

To install packages run:

scoop install [package-name]

Example 2: scoop

$iwr https://deno.land/x/install/install.ps1 -useb | iex

Example 3: Scoop

Set-ExecutionPolicy RemoteSigned -scope CurrentUser

Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')

# or shorter
iwr -useb get.scoop.sh | iex