Skip to content

Instantly share code, notes, and snippets.

@mortenscheel
Created June 30, 2020 19:58
Show Gist options
  • Save mortenscheel/5edc0b809092becc2f4ddf89306854b0 to your computer and use it in GitHub Desktop.
Save mortenscheel/5edc0b809092becc2f4ddf89306854b0 to your computer and use it in GitHub Desktop.
WIndows 10 Chocolatey and Scoop install snippets

Install Windows dependencies

  1. Install Chocolatey and Scoop in PowerShell (admin rights)
    Set-ExecutionPolicy Bypass -Scope Process -Force
    [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
    iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
    iwr -useb get.scoop.sh | iex
  2. Install apps and tools from normal terminal
    scoop install git gsudo nodejs-lts
    RefreshEnv
    npm install -g yarn cross-env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment