Skip to content

Instantly share code, notes, and snippets.

@coolbrg
Forked from gbraad/README.md
Created February 15, 2017 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolbrg/a83e8728ff7f9cc4e6a05d8afab331bb to your computer and use it in GitHub Desktop.
Save coolbrg/a83e8728ff7f9cc4e6a05d8afab331bb to your computer and use it in GitHub Desktop.
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 with 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment