Skip to content

Instantly share code, notes, and snippets.

@gbraad
Last active August 30, 2017 06:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save gbraad/f95e3d7cc746957b073d659ff620c0fd to your computer and use it in GitHub Desktop.
Save gbraad/f95e3d7cc746957b073d659ff620c0fd to your computer and use it in GitHub Desktop.
Setup development environment for Minishift on Windows

Setup development environment for Minishift on Windows

Run powershell or CMD as Administator and start:

> powershell -ExecutionPolicy unrestricted

This starts a new instance of powershell which allowss execution of scripts that are downloaded without a signature.

$ iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
$ choco install make
$ choco install git
$ $env:PATH += ";C:\Program Files\Git\bin\"

Install go from setup

$ $env:GOPATH = "C:\Workspaces\minishift\"
$ $env:PATH += ";$env:GOPATH\bin"
$ go env
$ go get github.com/Masterminds/glide

Install cygwin (for find and grep) in c:\cygwin

$ $env:PATH += ";c:\cygwin\bin\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment